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

@ -15,11 +15,6 @@
min-width: 100%;
}
.fullWidth .tabContainer {
flex: 1;
min-width: 0;
}
.tabList svg {
--icon-size: 16px;
min-width: var(--icon-size);
@ -57,6 +52,11 @@
}
}
.fullWidth .tabContainer {
flex: 1;
min-width: 0;
}
.tabButton {
background-color: transparent;
border: none;

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;
}

View File

@ -334,7 +334,6 @@
outline-offset: 1px;
}
/* biome-ignore lint: experimental CSS feature */
&::picker(select) {
@supports (appearance: base-select) {
appearance: base-select;
@ -351,7 +350,6 @@
scrollbar-color: var(--color-bg-higher) transparent;
}
/* biome-ignore lint: experimental CSS feature */
&::picker-icon {
display: none;
}

View File

@ -310,10 +310,6 @@
text-align: center;
}
.discoverGridItem:hover .discoverGridItemImage {
background-color: var(--color-bg-high);
}
.discoverGridItemImage {
width: var(--field-size-lg);
aspect-ratio: 1 / 1;
@ -322,3 +318,7 @@
display: grid;
place-items: center;
}
.discoverGridItem:hover .discoverGridItemImage {
background-color: var(--color-bg-high);
}