Files
ontime/apps/client/src/common/components/error-boundary/ErrorBoundary.module.scss
T
2025-10-07 12:32:12 +02:00

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;
}
}