mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-07 07:19:16 +00:00
fix: prevent settings reflow on small width screens
This commit is contained in:
committed by
Carlos Valente
parent
63d7250a70
commit
168d7103b1
@@ -9,7 +9,8 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
flex: 1 1 auto;
|
||||||
|
min-width: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ ul {
|
|||||||
|
|
||||||
.tabs {
|
.tabs {
|
||||||
width: min(30vw, 300px);
|
width: min(30vw, 300px);
|
||||||
|
flex: 0 0 min(30vw, 300px);
|
||||||
|
min-width: min(30vw, 300px);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
|||||||
Reference in New Issue
Block a user