diff options
author | 2020-09-28 21:36:16 +0100 | |
---|---|---|
committer | 2020-09-28 21:36:16 +0100 | |
commit | 4bb2c9f826af198e223f7eb5afd5cbbb13588d12 (patch) | |
tree | 3e70d0366b4dc3450319ed16827c66f3802c2b08 /src/components/HeaderBar/index.tsx | |
parent | Merge pull request #10 from python-discord/meta/add-license (diff) | |
parent | Fix responsive scaling for mobile devices (diff) |
Merge pull request #11 from python-discord/responsive/fix-phone-sizing
Fix responsive scaling for mobile devices
Diffstat (limited to 'src/components/HeaderBar/index.tsx')
-rw-r--r-- | src/components/HeaderBar/index.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/HeaderBar/index.tsx b/src/components/HeaderBar/index.tsx index 0569e3d..94dd900 100644 --- a/src/components/HeaderBar/index.tsx +++ b/src/components/HeaderBar/index.tsx @@ -45,6 +45,12 @@ function HeaderBar() { @media (max-width: 580px) { font-size: 2em; } + + @media (max-width: 400px) { + font-size: 1.5em; + text-align: center; + margin-left: 0; + } `}> Python Discord Forms </h1> |