ErrorPage.module.scss
627 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@import '../../styles/app';
.errorPage {
padding-top: 5%;
height: 100vh;
}
.errorContainer {
width: 365px;
text-align: center;
}
.errorBtn {
padding-left: 35px;
padding-right: 35px;
}
.errorCode {
margin: 20px;
font-size: 80px;
font-weight: $font-weight-normal;
color: $gray-800;
@include media-breakpoint-up(md) {
font-size: 180px;
}
}
.errorInfo {
font-size: 20px;
color: $gray-800;
}
.errorHelp {
font-size: 14px;
}
.pageFooter {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
width: 100%;
font-size: $font-size-mini;
color: $text-muted;
text-align: center;
}