Showing
1 changed file
with
7 additions
and
1 deletions
... | @@ -4,11 +4,17 @@ import styled from "styled-components"; | ... | @@ -4,11 +4,17 @@ import styled from "styled-components"; |
4 | const TitleBox = styled.div` | 4 | const TitleBox = styled.div` |
5 | display: flex; | 5 | display: flex; |
6 | flex-direction: column; | 6 | flex-direction: column; |
7 | + justify-content: center; | ||
8 | + align-items: center; | ||
9 | + height: 15%; | ||
7 | font-size: 30px; | 10 | font-size: 30px; |
8 | color: white; | 11 | color: white; |
12 | + margin-bottom: 10px; | ||
9 | `; | 13 | `; |
10 | 14 | ||
11 | -const Title = styled.span``; | 15 | +const Title = styled.span` |
16 | + font-family: "Raleway", sans-serif; | ||
17 | +`; | ||
12 | 18 | ||
13 | export default () => { | 19 | export default () => { |
14 | return ( | 20 | return ( | ... | ... |
-
Please register or login to post a comment