fix css bug in http microlog: ul inside microlog posts not getting list

markers
This commit is contained in:
2026-06-18 08:45:51 +01:00
parent 348b76aa04
commit 35ef330df8
2 changed files with 9 additions and 5 deletions
-5
View File
@@ -305,11 +305,6 @@ strong {
/** Blog feed */
.h-feed ul {
list-style: none;
margin-inline: 0;
}
/** Block quotes */
blockquote {
padding-inline-start: var(--spacing-inline-lg);
+9
View File
@@ -3,6 +3,15 @@
margin-block-start: var(--spacing-block-md);
}
.h-feed ul:has(> .h-entry) {
list-style-type: none;
margin-inline: 0;
ul {
list-style-type: disc;
}
}
.h-feed .h-entry {
display: flex;
flex-direction: column;