diff options
author | 2020-09-28 20:11:01 +0100 | |
---|---|---|
committer | 2020-09-28 20:11:01 +0100 | |
commit | 5a9fd83967c4bf425e77f5882c627501cb4dd70e (patch) | |
tree | 430d3af6766fb4c93be28e6899b71136fefa36f1 /src/components/HeaderBar/index.tsx | |
parent | Merge pull request #8 from python-discord/dev/remove-duplicate-console-log (diff) |
Use Uni Sans font for header
Diffstat (limited to 'src/components/HeaderBar/index.tsx')
-rw-r--r-- | src/components/HeaderBar/index.tsx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/components/HeaderBar/index.tsx b/src/components/HeaderBar/index.tsx index 97dbb8c..f14a504 100644 --- a/src/components/HeaderBar/index.tsx +++ b/src/components/HeaderBar/index.tsx @@ -12,8 +12,8 @@ position: absolute; width: 100%; transition: height 1s; -@media (max-width: 660px) { - height: 140px; +@media (max-width: 770px) { + height: 180px; } `; @@ -26,18 +26,19 @@ function HeaderBar() { <h1 css={css` font-size: 4em; margin: 0; - margin-top: 10px; + margin-top: 30px; margin-left: 30px; margin-bottom: 200px; transition-property: font-size, margin-bottom; transition-duration: 1s; + font-family: "Uni Sans"; - @media (max-width: 660px) { + @media (max-width: 770px) { margin-bottom: 100px; font-size: 3em; } - @media (max-width: 510px) { + @media (max-width: 580px) { font-size: 2em; } `}> |