01-pico.css
is the one adding too much space in between lines on lists:
ul li,
ol li {
margin-bottom: calc(var(--typography-spacing-vertical) * 0.25);
}
If I remove that, lists look perfect.
# I am the Watcher. I am your guide through this vast new twtiverse. # # Usage: # https://watcher.sour.is/api/plain/users View list of users and latest twt date. # https://watcher.sour.is/api/plain/twt View all twts. # https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri. # https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject. # # Options: # uri Filter to show a specific users twts. # offset Start index for quey. # limit Count of items to return (going back in time). # # twt range = 1 14 # self = https://watcher.sour.is/conv/7rwi7aa
01-pico.css
is the one adding too much space in between lines on lists:
ul li,
ol li {
margin-bottom: calc(var(--typography-spacing-vertical) * 0.25);
}
margin-bottom: 0;
. But I am leaving it to @ullarah, because he knows better than me.
* 0.25
(increasing, reducing), and also tried - 0.25
and other values. I believe the best bet here is a reset, so setting the margin-bottom
as I twted before. But not sure 100%.