mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-18 17:23:21 -05:00
58 lines
904 B
CSS
58 lines
904 B
CSS
.root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-4);
|
|
background-color: var(--color-bg-higher);
|
|
border-radius: 0 0 var(--radius-box) var(--radius-box);
|
|
padding: var(--s-4);
|
|
margin: var(--s-4) calc(-1 * var(--s-4)) calc(-1 * var(--s-4));
|
|
}
|
|
|
|
.pastRow {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
.mapRow {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-3);
|
|
}
|
|
|
|
.mapInfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.mapLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-1);
|
|
font-size: var(--font-3xs);
|
|
font-weight: var(--weight-semi);
|
|
color: var(--color-text-high);
|
|
}
|
|
|
|
.stageImage {
|
|
border-radius: var(--radius-box);
|
|
}
|
|
|
|
.inputRow {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: var(--s-3);
|
|
}
|
|
|
|
.weaponSelectContainer {
|
|
min-width: 200px;
|
|
}
|
|
|
|
.unreportedRow {
|
|
display: flex;
|
|
gap: var(--s-1);
|
|
}
|