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/Collections.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/Collections.svelte')
-rw-r--r-- | src/lib/sections/Collections.svelte | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/sections/Collections.svelte b/src/lib/sections/Collections.svelte index 7ca1969..ca2da16 100644 --- a/src/lib/sections/Collections.svelte +++ b/src/lib/sections/Collections.svelte @@ -42,10 +42,11 @@ <style> ul { margin: 0; - display: grid; - grid-template-columns: repeat(2, 1fr); - grid-column-gap: 0; + display: flex; + flex-wrap: wrap; width: fit-content; + /* this ensures there's at most 2 lines */ + max-width: 30em; } ul > :global(li) { |