fix: prevent settings reflow on small width screens

This commit is contained in:
Carlos Valente
2026-02-21 21:25:02 +01:00
committed by Carlos Valente
parent 63d7250a70
commit 168d7103b1
2 changed files with 4 additions and 1 deletions
@@ -9,7 +9,8 @@
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
flex: 1 1 auto;
min-width: 0;
position: relative;
}
@@ -7,6 +7,8 @@ ul {
.tabs {
width: min(30vw, 300px);
flex: 0 0 min(30vw, 300px);
min-width: min(30vw, 300px);
display: flex;
flex-direction: column;
overflow-y: auto;