mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-23 07:34:07 -05:00
Fix Biome warnings
This commit is contained in:
parent
33b83db577
commit
8cf2c028e1
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user