no line breaking within tags

This commit is contained in:
rhiannon morris 2024-07-07 14:09:38 +02:00
parent bde75df8ca
commit 6554dfd54c
1 changed files with 5 additions and 2 deletions

View File

@ -214,11 +214,14 @@ footer {
grid-area: 1 / 3 / auto / auto; grid-area: 1 / 3 / auto / auto;
} }
:is(#tags, #links) ul { #tags ul, #links ul {
padding: 0; padding: 0;
display: flex;
flex-flow: wrap row;
} }
:is(#tags, #links) li { #tags li, #links li {
display: inline; display: inline;
margin-right: 0.75em; margin-right: 0.75em;
white-space: nowrap;
} }