mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-21 15:42:31 -05:00
Give the vue-based error page some basic styles
This commit is contained in:
parent
5d85ad0f75
commit
da3d521824
2 changed files with 23 additions and 1 deletions
22
resources/assets/sass/pages/_error.scss
vendored
Normal file
22
resources/assets/sass/pages/_error.scss
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
.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;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="error-page-component">
|
||||
Page Not Found
|
||||
<h1>Page Not Found</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Reference in a new issue