diff options
author | 2020-09-29 01:17:12 +0100 | |
---|---|---|
committer | 2020-09-29 01:17:12 +0100 | |
commit | 7e9f264f1ce4846c1d8e395133f82f636f746fe0 (patch) | |
tree | b3fcae77b8fd51400fb59e09dac5d2ba99b1b4c5 /src/components/HeaderBar/index.tsx | |
parent | Merge pull request #11 from python-discord/responsive/fix-phone-sizing (diff) | |
parent | Update tests to match new form listing component (diff) |
Merge pull request #12 from python-discord/routing/add-react-router
Add routing
Diffstat (limited to 'src/components/HeaderBar/index.tsx')
-rw-r--r-- | src/components/HeaderBar/index.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/HeaderBar/index.tsx b/src/components/HeaderBar/index.tsx index 94dd900..6289dfc 100644 --- a/src/components/HeaderBar/index.tsx +++ b/src/components/HeaderBar/index.tsx @@ -46,11 +46,15 @@ function HeaderBar() { font-size: 2em; } - @media (max-width: 400px) { - font-size: 1.5em; + @media (max-width: 450px) { + font-size: 1.70em; text-align: center; margin-left: 0; } + + @media (max-width: 400px) { + font-size: 1.3em; + } `}> Python Discord Forms </h1> |