- Updated error_base template so that it contained the Root Vue component, which was the reason that the last login was not previously displaying - Deleted unused css - Created css variable max-page-width for use on the error page, topbar, and other full width elements
29 lines
394 B
SCSS
29 lines
394 B
SCSS
.error-page {
|
|
max-width: $max-page-width;
|
|
|
|
.panel {
|
|
box-shadow: none;
|
|
background-color: unset;
|
|
border: none;
|
|
max-width: 475px;
|
|
margin: auto;
|
|
|
|
&__heading {
|
|
text-align: center;
|
|
padding: $gap 0;
|
|
|
|
hr {
|
|
border: 1px solid $color-red;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: $gap;
|
|
}
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
@include icon-size(60);
|
|
}
|
|
}
|