Last active
November 26, 2020 09:42
-
-
Save yateendra/71cce59ba7d7609142068e426388eabd to your computer and use it in GitHub Desktop.
make m.facebook.com fit for desktop browser (using Stylus Extension)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body.touch { | |
max-width: 600px; | |
margin: 0 auto; | |
} | |
._129- { | |
border-top: none !important; | |
} | |
body::-webkit-scrollbar { | |
width: 312px; | |
/* width of the entire scrollbar */ | |
} | |
body::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
/* color of the tracking area */ | |
} | |
body::-webkit-scrollbar-thumb { | |
background-color: #888; | |
/* color of the scroll thumb */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment