linux侧边栏你给我定住

linux优化体验-侧边栏你给我定住

// ==UserScript==
// @name         linux侧边栏你给我定住
// @namespace    https://greasyfork.org/zh-CN/scripts/491300
// @version      1.1
// @description  linux优化体验-侧边栏你给我定住
// @author       luoawai
// @license      GPL-3.0 License
// @match        https://linux.do/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=linux.do
// @run-at       document-end
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
     GM_addStyle(`.sidebar-wrapper{position: sticky !important;top: 80px !important;}`)
     GM_addStyle(`#main-outlet-wrapper{overflow: visible !important;}`)
})();