Simply removes the sidebar so you can actually see the chat when the window is small.
Guilded - Responsive sidebar by McStylish
Details
AuthorMcStylish
LicenseMiT
CategoryGuilded
Created
Updated
Size691 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Responsive sidebar
@namespace guilded.gg
@version 1.0.3
@description Simply removes the sidebar so you can actually see the chat when the window is small.
@author McStylish
==/UserStyle== */
@-moz-document domain("guilded.gg") {
@media screen and (max-width: 1030px) {
/* Sidebar */
.WebAppSidebar-container, .NavV4Sidebar-container, .WebAppV2-minimal-nav-sidebar,
.NavV4SharedFooter-container, .WebAppV2-shared-footer {
display: none;
}
/* Main window */
.WebAppV2-container.WebAppV2-container-has-sidebar {
padding-left: 0;
}
}
}