diff options
author | mat <github@matdoes.dev> | 2022-03-16 13:12:48 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-03-16 13:12:48 -0500 |
commit | e6be291bd6787199f644b263c28c6d2c8b9b1d74 (patch) | |
tree | 7f9671882fdc24498a63460dfc7618d78b615b63 /src/lib/sections/Inventories.svelte | |
parent | f4e0719c4c9b3d4ba9be725700d47e6d229928f4 (diff) | |
download | skyblock-stats-e6be291bd6787199f644b263c28c6d2c8b9b1d74.tar.gz skyblock-stats-e6be291bd6787199f644b263c28c6d2c8b9b1d74.tar.bz2 skyblock-stats-e6be291bd6787199f644b263c28c6d2c8b9b1d74.zip |
Fix styling issues and add /login route
Diffstat (limited to 'src/lib/sections/Inventories.svelte')
-rw-r--r-- | src/lib/sections/Inventories.svelte | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/sections/Inventories.svelte b/src/lib/sections/Inventories.svelte index 6af64e9..84480ea 100644 --- a/src/lib/sections/Inventories.svelte +++ b/src/lib/sections/Inventories.svelte @@ -124,4 +124,16 @@ .inventory-tab-active { background-color: rgba(40, 40, 40, 0.9); } + + @media only screen and (max-width: 480px) { + .inventory-content:global(#inventory .item) { + /* there's no good way to override the existing 32px size without !important :( */ + font-size: 24px !important; + } + } + @media only screen and (max-width: 350px) { + .inventory-content:global(#inventory .item) { + font-size: 16px !important; + } + } </style> |