Skip to content

Instantly share code, notes, and snippets.

@Rohaq
Last active September 2, 2023 21:37
Show Gist options
  • Save Rohaq/c3652011a0eb728990ac3ced5a33f746 to your computer and use it in GitHub Desktop.
Save Rohaq/c3652011a0eb728990ac3ced5a33f746 to your computer and use it in GitHub Desktop.
WhiteForest Portrait Mode Enabler
/* ==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