added styling for blockquotes in embedded content

This commit is contained in:
William Grant 2021-09-02 15:48:45 +02:00
parent 22330e25c5
commit 2f2681ea09
1 changed files with 12 additions and 0 deletions

View File

@ -173,3 +173,15 @@ ul li > p {
.accordion-content {
transition: max-height 0.2s;
}
.embed-content blockquote {
@apply border-primary border-l-2 border-opacity-25 font-semibold pl-4 mb-8 mt-6 ml-6;
}
.embed-content blockquote > p {
@apply mb-3 font-sans tracking-wide text-justify;
}
.embed-content blockquote > a {
@apply cursor-pointer text-blue hover:underline;
}