Last active
January 24, 2020 06:00
-
-
Save JaxonWright/54a9d8f377de0336510156e649d82cbb to your computer and use it in GitHub Desktop.
The CSS for the webkit scrollbar that is injected into every website by the Tesla Chromium browser installed in most Tesla vehicles. Kudos to @rob2d for helping me find this!
This file contains 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
<style> | |
::-webkit-scrollbar { width: 6px; } | |
::-webkit-scrollbar-track { background: #ddd; border-radius: 6px; } | |
::-webkit-scrollbar-thumb { background: #bbb; } | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment