Make bullets in microblog posts work
Some checks failed
/ build (push) Has been cancelled

Bullet points don't really work in centred text, but I've found something that mostly works!
This commit is contained in:
JP Hastings-Spital 2025-03-11 15:45:52 +00:00
parent 89feb14726
commit e65bd689bb

View file

@ -891,6 +891,17 @@ mark {
.posts { .posts {
text-align: center; text-align: center;
ul {
list-style: none;
padding: 0;
margin: inherit;
li::before, li::after {
content: '';
margin: 0.25em;
}
}
} }
} }