28 lines
527 B
SCSS
28 lines
527 B
SCSS
.error-main {
|
|
@include table-flex(center, center, flex, row, wrap, center);
|
|
@extend %backgound-taiga;
|
|
bottom: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
.error-container {
|
|
@include table-flex-child(0, 600px, 0, 600px);
|
|
color: $white;
|
|
text-align: center;
|
|
}
|
|
img {
|
|
margin-bottom: 3rem;
|
|
}
|
|
h1 {
|
|
color: $white;
|
|
}
|
|
a {
|
|
color: $green-taiga;
|
|
&:hover {
|
|
color: $fresh-taiga;
|
|
}
|
|
}
|
|
}
|