aboutsummaryrefslogtreecommitdiffstats
path: root/demo/src/sass/layout/error.scss
blob: 7c625610c97e1226d471e3a7cf9d61b847fa2365 (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);
  }
}