💄 support usage of ul and ol

This commit is contained in:
DrMaxNix 2024-07-27 18:58:08 +02:00
parent 15a25e05d9
commit 5100c96a7d

View File

@ -70,10 +70,19 @@ body {
font-size: 0;
font-family: "Ubuntu", sans-serif;
}
span {
span, li::marker {
display: block;
font-size: 1rem;
}
ul, ol {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
gap: 1rem;
}
ul > li, ol > li {
text-align: start;
}
a {
text-decoration: none;
}