diff options
Diffstat (limited to 'client/src/app/+page-not-found')
-rw-r--r-- | client/src/app/+page-not-found/page-not-found.component.scss | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/client/src/app/+page-not-found/page-not-found.component.scss b/client/src/app/+page-not-found/page-not-found.component.scss index 06c1d758e..a997dd9d7 100644 --- a/client/src/app/+page-not-found/page-not-found.component.scss +++ b/client/src/app/+page-not-found/page-not-found.component.scss | |||
@@ -2,9 +2,10 @@ | |||
2 | @import '_mixins'; | 2 | @import '_mixins'; |
3 | 3 | ||
4 | .root { | 4 | .root { |
5 | @include margin-left(auto); | ||
6 | @include margin-right(auto); | ||
7 | |||
5 | height: 100%; | 8 | height: 100%; |
6 | margin-left: auto; | ||
7 | margin-right: auto; | ||
8 | text-align: center; | 9 | text-align: center; |
9 | padding-top: 150px; | 10 | padding-top: 150px; |
10 | display: flex; | 11 | display: flex; |
@@ -12,20 +13,21 @@ | |||
12 | flex-direction: column-reverse; | 13 | flex-direction: column-reverse; |
13 | 14 | ||
14 | .box { | 15 | .box { |
15 | text-align: left; | 16 | text-align: start; |
16 | font-size: 120%; | 17 | font-size: 120%; |
17 | padding: 0 15px; | 18 | padding: 0 15px; |
18 | } | 19 | } |
19 | 20 | ||
20 | img { | 21 | img { |
21 | margin-left: auto; | 22 | @include margin-left(auto); |
23 | |||
22 | width: 220px; | 24 | width: 220px; |
23 | height: auto; | 25 | height: auto; |
24 | } | 26 | } |
25 | 27 | ||
26 | @media screen and (max-width: $mobile-view) { | 28 | @media screen and (max-width: $mobile-view) { |
27 | img { | 29 | img { |
28 | margin-right: auto; | 30 | @include margin-right(auto); |
29 | } | 31 | } |
30 | } | 32 | } |
31 | 33 | ||