refining spacing between blocks

This commit is contained in:
Antoine M 2023-11-07 10:21:27 +01:00
parent 20eac18702
commit 4f592d7a6b

View File

@ -73,6 +73,13 @@ article > *:not(.entry-content, .chapter-header-block),
h3 {
@apply font-bold text-2xl mt-16 mb-4;
}
h4 {
@apply font-bold text-xl mt-6 mb-3;
}
p {
@apply my-3 p-0;
}
p,
ul,
@ -83,8 +90,10 @@ article > *:not(.entry-content, .chapter-header-block),
@apply no-underline;
}
}
@apply mb-8;
}
ul,
ol {
@apply mt-4 mb-8;
}
ol {
@apply list-decimal list-inside;
@ -102,4 +111,8 @@ article > *:not(.entry-content, .chapter-header-block),
margin-right: 14px;
margin-top: 9px;
}
p + ol,
p + ul {
@apply mt-0;
}
}