diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-24 00:55:55 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-24 00:55:55 +0100 |
commit | 76f8a0223b1759022a2c2d4e115e6b385548d2aa (patch) | |
tree | 0d7352e612e53dfb58f82592efba1a115ab9afef /web | |
parent | 877eadc661b3b017ae843049e2b3106f3c8a7539 (diff) | |
download | jellything-76f8a0223b1759022a2c2d4e115e6b385548d2aa.tar jellything-76f8a0223b1759022a2c2d4e115e6b385548d2aa.tar.bz2 jellything-76f8a0223b1759022a2c2d4e115e6b385548d2aa.tar.zst |
replace table-cell base hlist with inline-block so firefox' layout engine get freaked out
Diffstat (limited to 'web')
-rw-r--r-- | web/style/layout.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/style/layout.css b/web/style/layout.css index 7fcfee1..46fecde 100644 --- a/web/style/layout.css +++ b/web/style/layout.css @@ -111,14 +111,14 @@ summary h3 { } .hlist { - overflow-x: scroll; + overflow-x: auto; max-width: 100%; + white-space: nowrap; } -.hlist ul { - display: table; -} -.hlist ul li { - display: table-cell; +.hlist li { + display: inline-block; + vertical-align: top; + white-space: normal; } @media (max-width: 750px) { |