Tired of scrolling all the way back up to check on your notifications? Need to look something up at a moment's notice? Fear not! This userstyle will make sure that the lovely little sidebar on the left side of your screen will stay there no matter how far down you've scrolled.
Cohost: sticky sidebar by eblu
Details
Authoreblu
LicenseNo License
Categorycohost
Created
Updated
Size605 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 Cohost: sticky sidebar
@version 20220729.23.18
@namespace userstyles.world/user/eblu
@description Tired of scrolling all the way back up to check on your notifications? Need to look something up at a moment's notice? Fear not! This userstyle will make sure that the lovely little sidebar on the left side of your screen will stay there no matter how far down you've scrolled.
@author eblu
@license No License
==/UserStyle== */
@-moz-document domain("cohost.org") {
@media (min-width: 1024px) {
main > div > ul {
position: sticky;
top: 128px;
}
}
}