设置horn编辑区域

set horn

// ==UserScript==
// @name         设置horn编辑区域
// @namespace    http://tampermonkey.net/
// @description  set horn
// @license      MIT
// @version      0.1
// @match        https://horn.sankuai.com/files/edit/*
// @match        https://horn.sankuai.com/new/file/*
// @grant        GM_log
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
    GM_log("Rome+Tampermonkey");
    GM_addStyle('.code-editor{height: 800px !important}');
    GM_addStyle('.editor-container{height: 800px !important}');
    GM_addStyle('.component-content-card{height: 500px !important; width: 800px !important}');

})();