Fix Biome warnings

This commit is contained in:
Kalle
2026-03-22 21:04:59 +02:00
parent 33b83db577
commit 8cf2c028e1
4 changed files with 35 additions and 37 deletions

View File

@@ -10,6 +10,21 @@
max-width: 100%;
}
.topSection {
display: flex;
align-items: center;
padding: var(--s-2);
border: var(--border-style);
border-top: transparent;
border-radius: 0 0 var(--radius-box) var(--radius-box);
background-color: var(--color-bg);
gap: var(--s-2);
max-width: 100%;
overflow: auto;
animation: scrolling forwards;
animation-timeline: scroll(x self);
}
.topWrapperCollapsed {
transform: translateX(-50%) translateY(-100%);
@@ -39,21 +54,6 @@
}
}
.topSection {
display: flex;
align-items: center;
padding: var(--s-2);
border: var(--border-style);
border-top: transparent;
border-radius: 0 0 var(--radius-box) var(--radius-box);
background-color: var(--color-bg);
gap: var(--s-2);
max-width: 100%;
overflow: auto;
animation: scrolling forwards;
animation-timeline: scroll(x self);
}
@keyframes scrolling {
0%,
to {
@@ -88,6 +88,17 @@
left: 0;
}
.weaponsSection {
width: 150px;
max-height: 70vh;
border: var(--border-style);
border-left: transparent;
border-radius: 0 var(--radius-box) var(--radius-box) 0;
background: var(--color-bg);
gap: 2px;
overflow-y: auto;
}
.weaponsWrapperCollapsed {
transform: translateX(-100%);
@@ -118,17 +129,6 @@
}
}
.weaponsSection {
width: 150px;
max-height: 70vh;
border: var(--border-style);
border-left: transparent;
border-radius: 0 var(--radius-box) var(--radius-box) 0;
background: var(--color-bg);
gap: 2px;
overflow-y: auto;
}
.weaponsSectionWide {
width: 175px;
}