sendou.ink/app/components/SortableTableHeader.module.css
Kalle 6e987d506f
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
Tournament layout refresh, improve admin experience (#3152)
2026-06-11 18:31:10 +03:00

27 lines
365 B
CSS

.sortHeader {
display: inline-flex;
align-items: center;
gap: var(--s-1);
background: none;
border: none;
padding: 0;
font: inherit;
color: inherit;
cursor: pointer;
text-transform: inherit;
}
.sortIcon {
width: 0.85rem;
height: 0.85rem;
}
.sortIconInactive {
opacity: 0.4;
.sortHeader:hover &,
.sortHeader:focus-visible & {
opacity: 0.85;
}
}