Uses grid template to get rid of the facebook style sidebar
Reddit no sidebar 16-02-2024 by Winterbok
Details
AuthorWinterbok
LicenseNONE
Categorywww.reddit.com
Created
Updated
Size493 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 Reddit no sidebar 16-02-2024
@version 20240216.11.14
@namespace https://userstyles.world/user/Winterbok
@description Uses grid template to get rid of the facebook style sidebar
@author Winterbok
@license Winterbok
==/UserStyle== */
@-moz-document domain("www.reddit.com") {
#main-content{
grid-column-start: 1;
}
#left-sidebar-container{
display: none;
}
.subgrid-container{
grid-column-start: 1;
}
}