mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-05 20:56:13 -05:00
28 lines
509 B
CSS
28 lines
509 B
CSS
.weaponRow {
|
|
display: flex;
|
|
gap: var(--s-0-5);
|
|
background-color: var(--color-bg-higher);
|
|
border: none;
|
|
border-radius: var(--radius-full);
|
|
padding: var(--s-0-5) var(--s-1-5);
|
|
cursor: pointer;
|
|
}
|
|
|
|
:global(html.light) .unknownWeapon {
|
|
filter: drop-shadow(0 0 1px var(--color-text));
|
|
}
|
|
|
|
.weaponPopover {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.weaponPopoverRow {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
font-size: var(--font-xs);
|
|
font-weight: var(--weight-semi);
|
|
}
|