This commit is contained in:
Dapoolp 2025-09-02 11:54:31 +02:00
parent 7cbe4b7580
commit 4bdafeff6d
10 changed files with 89 additions and 36 deletions

View file

@ -132,6 +132,12 @@
background: light-dark(@dark-15, @beige-15);
border: 1px solid light-dark(@dark, @beige);
border-radius: 3px;
&:has(i) {
color: @red;
border-color: @red;
background-color: @medium-red-10;
}
}
.label {

View file

@ -58,6 +58,31 @@ body.game:is(.performance-low, .noblur) {
.tab {
padding: 0 10px;
&.changes {
fieldset {
gap: 0;
padding-top: .5rem;
header {
width: 100%;
scrollbar-gutter: stable;
overflow: hidden auto;
}
header, ol {
grid-template-columns: 12fr 7fr 7fr 4fr 1fr;
}
&.conditional {
header, ol {
grid-template-columns: 12fr 7fr 10fr 3fr;
scrollbar-gutter: unset;
overflow: unset;
}
}
}
}
}
}