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