style lists

This commit is contained in:
Adam 2023-06-19 22:07:12 -04:00
parent 2ec615f1d7
commit 9a346da546

View file

@ -4,8 +4,7 @@
/* for innerHTML articles */
article p {
@apply mt-5;
@apply indent-4;
@apply mt-5 indent-4;
}
article h3 {
@ -17,5 +16,17 @@ article h3 {
}
article a {
@apply text-orange-300 hover:underline border-orange-300 duration-300;
@apply text-orange-300 hover:underline;
}
article ul, article ol {
@apply mt-5 list-inside;
}
article ul {
@apply list-disc;
}
article ol {
@apply list-decimal;
}