diff options
author | mat <github@matdoes.dev> | 2022-04-05 20:36:11 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-04-05 20:36:11 -0500 |
commit | 8d6cb70fe524329e1f9fb326a1bbe76009d288ab (patch) | |
tree | 4caff0ba917a7eee623e2a8e5bd53052c86cee4c | |
parent | 518afeb6f9d9e5428445cb1846f4c33e9d042808 (diff) | |
download | skyblock-stats-8d6cb70fe524329e1f9fb326a1bbe76009d288ab.tar.gz skyblock-stats-8d6cb70fe524329e1f9fb326a1bbe76009d288ab.tar.bz2 skyblock-stats-8d6cb70fe524329e1f9fb326a1bbe76009d288ab.zip |
fix infobox not looking aligned on mobile
-rw-r--r-- | src/lib/sections/Infobox.svelte | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/sections/Infobox.svelte b/src/lib/sections/Infobox.svelte index dd59265..f454654 100644 --- a/src/lib/sections/Infobox.svelte +++ b/src/lib/sections/Infobox.svelte @@ -69,4 +69,10 @@ border: 1px solid var(--theme-lighter-background); } } + @media only screen and (max-width: 460px) { + #infobox-container { + max-width: 100%; + float: left; + } + } </style> |