fix: prevent reflow between entry editors

This commit is contained in:
Carlos Valente
2025-08-18 07:23:59 +02:00
committed by Carlos Valente
parent 7ee0de5341
commit 7ce1097826
3 changed files with 3 additions and 3 deletions
@@ -1,12 +1,13 @@
.list {
display: flex;
flex-wrap: wrap;
flex-wrap: nowrap;
gap: 0.5rem;
}
.swatch {
width: 2rem;
height: 2rem;
aspect-ratio: 1;
border-radius: 99px;
border: 2px solid $gray-1200;
color: $ui-white;
@@ -43,6 +43,5 @@
border-radius: 0 8px 8px 0;
flex: 1 1 auto; /* flex-grow: 1, flex-shrink: 1, flex-basis: auto */
min-width: 30rem;
max-width: 45rem;
}
@@ -13,7 +13,7 @@
display: flex;
flex-direction: column;
gap: 1.5rem;
overflow-y: auto;
overflow-y: scroll;
}
.timeSettings {