Makes the sidebar stick to the top of the page so you don't have to scroll back to the top when you want to access it.
Works in both portrait and landscape orientation.
Looks a bit janky but it's fully functional.
Should work in every browser.
Authorttothh
LicenseCC Zero
Categoryhttps://www.reddit.com/
Created
Updated
Size666 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Makes the sidebar stick to the top of the page so you don't have to scroll back to the top when you want to access it.
Works in both portrait and landscape orientation.
Looks a bit janky but it's fully functional.
Should work in every browser.
/* ==UserStyle==
@name Reddit sticky sidebar
@version 1.0.0
@namespace userstyles.world/user/ttothh
@description Makes the sidebar stick to the top of the page so you don't have to scroll back to the top when you want to access it.
Works in both portrait and landscape orientation.
Looks a bit janky but it's fully functional.
Should work in every browser.
@author ttothh
@license CC Zero
==/UserStyle== */
@-moz-document url-prefix("https://www.reddit.com") {
div._3Kd8DQpBIbsr5E1JcrMFTY._1tvThPWQpORoc2taKebHxs {
height: 50vh;
overflow: scroll;
position: sticky;
top: 75px;
border-radius: 3px;
}
}