You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
576 B
SCSS
26 lines
576 B
SCSS
@use '../../utilities/main_utilities' as *;
|
|
|
|
.body--error{
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
flex-direction: column !important;
|
|
height: 100% !important;
|
|
background: $color-bg;
|
|
color: $color-text;
|
|
|
|
@include color-scheme(dark) {
|
|
background: $color-bg--dark;
|
|
color: $color-text--dark;
|
|
}
|
|
}
|
|
|
|
.error-title{
|
|
font-size: 40px;
|
|
@include media($media-sm) { font-size: 80px; }
|
|
}
|
|
.error-text{
|
|
margin-top: 20px;
|
|
@include media($media-sm) { margin-top: 40px; }
|
|
}
|