removes both sidebars and width limitation
Reddit full width by JurecUA
Details
AuthorJurecUA
LicenseNo License
Categoryhttps://www.reddit.com/
Created
Updated
Code size1.1 kB
Code checksume34f75b6
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name new reddit full width
@version 20240324.07.06
@namespace https://userstyles.world/user/alije123
@description removes both sidebars and width limitation
@author alije123
@license No License
==/UserStyle== */
@-moz-document domain("reddit.com") {
#left-sidebar-container,
#right-sidebar-container {
display: none!important;
width: 0;
visibility: hidden;
overflow: hidden
}
@media (min-width:1200px) {
.grid-container,
.theme-rpl .grid .grid-cols-1 {
grid-template-columns: 0 1fr
}
}
.bg-neutral-background-weak,
aside {
visibility: hidden;
overflow: hidden;
display: none
}
main#main-content {
width: 100%;
max-width: 100%
}
.grid-container:not(.grid-full),
.grid-container:not(.grid-full).flex-nav-expanded {
--flex-nav-width: 0px;
--transition-duration: var(--expand-duration);
--transition-curve: var(--expand-curve)
}
}