sendou.ink/app/form/fields/ArrayFormField.module.css
Kalle db6ccf254b
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
Convert new calendar event/tournament page to SendouForm
2026-06-19 11:49:11 +03:00

40 lines
698 B
CSS

.card {
border: var(--border-style);
border-radius: var(--radius-box);
margin: 0;
padding: 0;
}
.header {
--header-border-radius: calc(var(--radius-field) - 2px);
display: flex;
align-items: center;
gap: var(--s-2);
padding: var(--s-2) var(--s-3);
background-color: var(--color-bg-higher);
border-bottom: var(--border-style);
border-radius: var(--header-border-radius) var(--header-border-radius) 0 0;
}
.headerLabel {
flex: 1;
font-size: var(--font-xs);
font-weight: var(--weight-semi);
}
.content {
padding: var(--s-4);
display: flex;
flex-direction: column;
gap: var(--s-4);
}
.itemInput {
flex: 1;
}
.removeButton {
height: var(--field-size);
align-self: flex-end;
}