aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+error-page/error-page.component.scss
blob: d36cc1701820296a87b40bdc2b3810a2a568d9eb (plain) (blame)
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
@use '_variables' as *;
@use '_mixins' as *;

.root {
  @include margin-left(auto);
  @include margin-right(auto);
  @include padding-top(9rem);
  @include rfs(45rem, width);

  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;


  .box {
    @include font-size(1.25rem);

    text-align: start;
    padding: 0 15px;
  }

  img {
    @include margin-left(auto);
    @include rfs(14rem, width);
  }

  @media screen and (max-width: $mobile-view) {
    img {
      @include margin-right(auto);
    }
  }
}