feat(aio): page not found layout and designs (#16089)
Add 404 svg image h1 custom styling PR Close #16089
This commit is contained in:

committed by
Miško Hevery

parent
1259fe75c9
commit
9f66c9c1d1
@ -27,6 +27,9 @@ l-relative {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.flex-center {
|
||||
justify-content: center;
|
||||
}
|
||||
.flex-center {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
@ -8,4 +8,5 @@
|
||||
@import 'top-menu';
|
||||
@import 'marketing-layout';
|
||||
@import 'footer';
|
||||
@import 'layout-global';
|
||||
@import 'layout-global';
|
||||
@import 'not-found';
|
21
aio/src/styles/1-layouts/_not-found.scss
Normal file
21
aio/src/styles/1-layouts/_not-found.scss
Normal file
@ -0,0 +1,21 @@
|
||||
#file-not-found {
|
||||
padding: 3rem 3rem 3rem;
|
||||
}
|
||||
|
||||
.nf-container {
|
||||
align-items: center;
|
||||
padding: 32px;
|
||||
}
|
||||
|
||||
.nf-response {
|
||||
margin: 32px;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
|
||||
h1 {
|
||||
font-size: 48px;
|
||||
color: $blue;
|
||||
text-transform: uppercase;
|
||||
margin: 8px 0;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user