Fix Stream settings dialog in portrait mode

This commit is contained in:
redphx 2024-07-18 09:06:37 +07:00
parent c2d8f1fbf7
commit e1eca20792

View File

@ -1,6 +1,9 @@
.bx-stream-settings-dialog {
display: flex;
position: fixed;
top: 0;
right: 0;
bottom: 0;
z-index: var(--bx-stream-settings-z-index);
opacity: 0.98;
user-select: none;
@ -22,10 +25,8 @@
}
.bx-stream-settings-tabs {
position: fixed;
top: 0;
right: 420px;
display: flex;
position: fixed;
flex-direction: column;
border-radius: 0 0 0 8px;
box-shadow: 0px 0px 6px #000;
@ -60,10 +61,6 @@
.bx-stream-settings-tab-contents {
flex-direction: column;
position: fixed;
right: 0;
top: 0;
bottom: 0;
padding: 14px 14px 0;
width: 420px;
background: #1a1b1e;
@ -74,6 +71,8 @@
text-align: center;
box-shadow: 0px 0px 6px #000;
overflow: overlay;
margin-left: 56px;
z-index: 1;
> div[data-tab-group=mkb] {
display: flex;
@ -108,6 +107,11 @@
}
}
@media screen and (max-width: 500px) {
.bx-stream-settings-tab-contents {
width: calc(100vw - 56px);
}
}
.bx-stream-settings-row {
display: flex;