mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-15 23:41:53 -05:00
41 lines
658 B
CSS
41 lines
658 B
CSS
.cancelWaiting {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 120px;
|
|
color: var(--color-text-low);
|
|
font-weight: var(--weight-semi);
|
|
text-align: center;
|
|
}
|
|
|
|
.cancelRespondRoot {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.cancelRespondHeader {
|
|
font-size: var(--font-md);
|
|
font-weight: var(--weight-semi);
|
|
text-align: center;
|
|
}
|
|
|
|
.cancelRespondButtons {
|
|
display: flex;
|
|
gap: var(--s-3);
|
|
}
|
|
|
|
.rematchContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.divider {
|
|
border: none;
|
|
border-top: 2px solid var(--color-border);
|
|
margin-block: var(--s-2);
|
|
width: 100%;
|
|
}
|