Last active
May 2, 2026 02:24
-
-
Save thelabcat/fec66e7a5278bca870d834490ca5c7de to your computer and use it in GitHub Desktop.
Custom CSS to use Rumble chat popout in OBS Studio
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
| /* Make the background transparent, the border invisible, and the text white */ | |
| * { | |
| background-color: transparent !important; | |
| border: none !important; | |
| color: #fff !important; | |
| } | |
| /* Hide a bunch of elements */ | |
| .chat--header, .chat-sticky-rants__container, .chat__pinned-ui-container, .chat--signin-container, .chat-form-overflow-wrapper {display: none} | |
| /* Hide the scrollbar */ | |
| #chat-history-list {overflow-y: hidden} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment