aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/layout/error.scss
blob: 385ecbf330c12c1a812d72c74dcf90e2bb334d18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// ==========================================================================
// Errors (AWS pages)
// ==========================================================================

// Error page
html.error,
.error body {
    height: 100%;
}

html.error {
    background: $page-background;
    background-attachment: fixed;
}

.error body {
    align-items: center;
    display: flex;
    width: 100%;
}

.error main {
    padding: $spacing-base;
    text-align: center;
    width: 100%;

    p {
        @include font-size($font-size-large);
    }
}