mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
21 lines
320 B
SCSS
21 lines
320 B
SCSS
.emptyContainer {
|
|
width: 100%;
|
|
text-align: center;
|
|
color: $white-10;
|
|
|
|
.empty {
|
|
display: block;
|
|
width: min(100%, 24rem);
|
|
margin-inline: auto;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.text {
|
|
display: block;
|
|
margin-inline: auto;
|
|
font-weight: 600;
|
|
font-size: 2em;
|
|
max-width: min(100%, 600px);
|
|
}
|
|
}
|