From 6554dfd54c38641436addcfd3807dd0e836c50b2 Mon Sep 17 00:00:00 2001 From: rhiannon morris Date: Sun, 7 Jul 2024 14:09:38 +0200 Subject: [PATCH] no line breaking within tags --- style/shiny/single.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/style/shiny/single.css b/style/shiny/single.css index 284cdde..8c9cdb8 100644 --- a/style/shiny/single.css +++ b/style/shiny/single.css @@ -214,11 +214,14 @@ footer { grid-area: 1 / 3 / auto / auto; } -:is(#tags, #links) ul { +#tags ul, #links ul { padding: 0; + display: flex; + flex-flow: wrap row; } -:is(#tags, #links) li { +#tags li, #links li { display: inline; margin-right: 0.75em; + white-space: nowrap; }