mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
24 lines
332 B
SCSS
24 lines
332 B
SCSS
.errorContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
place-content: center;
|
|
background-color: $ui-black;
|
|
color: $ui-white;
|
|
}
|
|
|
|
.error {
|
|
color: $error-red;
|
|
}
|
|
|
|
.report {
|
|
color: $blue-500;
|
|
text-decoration: underline;
|
|
text-underline-offset: 2px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: $ontime-color;
|
|
}
|
|
}
|