13 lines
273 B
SCSS
13 lines
273 B
SCSS
@use '../../styles/variables' as *;
|
|
|
|
.page { max-width: none; }
|
|
.grid { display: flex; flex-direction: column; gap: $s-3; }
|
|
|
|
.state, .stateError {
|
|
padding: $s-8;
|
|
text-align: center;
|
|
color: var(--text-muted);
|
|
font-size: 13px;
|
|
}
|
|
.stateError { color: var(--danger); }
|