diff options
Diffstat (limited to 'src/lib/sections/Inventories.svelte')
-rw-r--r-- | src/lib/sections/Inventories.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/sections/Inventories.svelte b/src/lib/sections/Inventories.svelte index 84480ea..80966ef 100644 --- a/src/lib/sections/Inventories.svelte +++ b/src/lib/sections/Inventories.svelte @@ -126,13 +126,13 @@ } @media only screen and (max-width: 480px) { - .inventory-content:global(#inventory .item) { + .inventory-content :global(.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) { + .inventory-content :global(.item) { font-size: 16px !important; } } |