Last active
September 2, 2023 21:37
-
-
Save Rohaq/c3652011a0eb728990ac3ced5a33f746 to your computer and use it in GitHub Desktop.
WhiteForest Portrait Mode Enabler
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
/* ==UserStyle== | |
@name TheSerfs.tv Portrait Mode Enabler | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description Adds portait mode layout support to theserfs.tv | |
@author Rohaq | |
==/UserStyle== */ | |
@-moz-document domain("theserfs.tv") { | |
@media (orientation: portrait) { | |
body#bigscreen #bigscreen-layout.chat-right { | |
flex-direction: column; | |
} | |
body#bigscreen #bigscreen-layout.chat-left { | |
flex-direction: column-reverse; | |
} | |
body#bigscreen #stream-panel { | |
flex-direction: row; | |
width: 100%; | |
} | |
body#bigscreen #chat-panel { | |
flex-direction: row; | |
width: 100% !important; | |
min-height: 500px; | |
flex-grow: 1; | |
} | |
#chat-panel-resize-bar { | |
display: none; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment