mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
22 lines
470 B
SCSS
Vendored
22 lines
470 B
SCSS
Vendored
.error-page-component {
|
|
display: flex;
|
|
padding: $grid-gutter-width ($grid-gutter-width / 2);
|
|
flex-grow: 1;
|
|
align-items: center;
|
|
|
|
h1 {
|
|
@include font-sans-bold;
|
|
width: 100%;
|
|
font-size: 22px;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
font-size: 32px;
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
font-size: 48px;
|
|
}
|
|
}
|
|
}
|