Αutohide sidebars

  • Right sidebar has a different implementation.
  • Try this:
    #right-sidebar {
      width: 3px !important;
    }
    #right-sidebar.open:hover {
      width: unset !important;
    }
    
    • You may prefer some percentage, e.g.:
        width: 40% !important;
      
    • If you prefer covering the main content instead of pushing it, add also these lines:
        position: fixed;
        right: 0px;
        top: 48px;
      
1 Like