Showing
1 changed file
with
12 additions
and
0 deletions
... | @@ -9,14 +9,26 @@ export default createGlobalStyle` | ... | @@ -9,14 +9,26 @@ export default createGlobalStyle` |
9 | } | 9 | } |
10 | body { | 10 | body { |
11 | max-width: 100%; | 11 | max-width: 100%; |
12 | + min-height: 100vh; | ||
13 | + overflow-x: hidden; | ||
14 | + display:flex; | ||
15 | + flex-direction:column; | ||
12 | } | 16 | } |
13 | li { | 17 | li { |
14 | list-style: none; | 18 | list-style: none; |
15 | } | 19 | } |
16 | a { | 20 | a { |
21 | + color: black; | ||
17 | text-decoration:none; | 22 | text-decoration:none; |
18 | } | 23 | } |
19 | input:focus { | 24 | input:focus { |
20 | outline:none; | 25 | outline:none; |
21 | } | 26 | } |
27 | + #root { | ||
28 | + max-width: 100%; | ||
29 | + min-height: 100vh; | ||
30 | + overflow-x: hidden; | ||
31 | + display:flex; | ||
32 | + flex-direction:column; | ||
33 | + } | ||
22 | `; | 34 | `; | ... | ... |
-
Please register or login to post a comment