Remove vertical margin from nested markdown lists (#631)

This commit is contained in:
Pete Jodo 2021-10-22 06:01:19 -04:00 committed by GitHub
parent f1b675f1b5
commit 08727bddac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,6 +62,11 @@
@apply my-1;
}
.markdown li > ul,
.markdown li > ol {
@apply my-0;
}
.markdown blockquote {
@apply border-l-4 border-gray-200 pl-4 py-2 my-4 text-gray-500;
}