sendou.ink/app/features/user-page/components/GameBadgeSelectField.module.css
Kalle 4cc3a9807c
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
User page in-game badge widget (#2841)
2026-02-28 16:52:37 +02:00

55 lines
793 B
CSS

.container {
display: flex;
flex-direction: column;
gap: var(--s-3);
}
.selectedBadges {
display: flex;
flex-wrap: wrap;
gap: var(--s-2);
align-items: center;
}
.count {
font-size: var(--fonts-xs);
color: var(--text-lighter);
font-weight: var(--semi-bold);
}
.badgeButton {
all: unset;
cursor: pointer;
border-radius: var(--rounded-sm);
padding: var(--s-0-5);
transition: background-color 0.15s;
}
.badgeButton:hover {
background-color: var(--bg-lightest);
}
.badgeButton:focus-visible {
outline: 2px solid var(--theme);
outline-offset: 2px;
}
.badgeImage {
display: block;
width: 48px;
height: 48px;
object-fit: contain;
}
.searchInput {
width: 100%;
}
.resultsGrid {
display: flex;
flex-wrap: wrap;
gap: var(--s-1);
max-height: 300px;
overflow-y: auto;
}