atst/styles/components/_error_page.scss
leigh-mil 68c7a70082 Set max width on error page and include Last login on error page
- 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
2020-02-04 16:13:07 -05:00

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