fix: style blockquotes

This commit is contained in:
Solomon Victorino 2024-06-23 17:00:55 -06:00
parent 694d58d6ae
commit 941cafc664

View File

@ -4,7 +4,7 @@
padding: 2px 6px; padding: 2px 6px;
} }
.annotation { .annotation, blockquote {
padding: 1rem; padding: 1rem;
border-radius: 4px; border-radius: 4px;
background: #eee; background: #eee;
@ -12,21 +12,21 @@
color: #222; color: #222;
} }
.annotation img { .annotation img, blockquote img {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
} }
.annotation a { .annotation a, blockquote a {
background: none; background: none;
font-weight: 500; font-weight: 500;
} }
.annotation ul { .annotation ul, blockquote ul {
padding-left: 1em; padding-left: 1em;
} }
.dark .annotation { .dark .annotation, .dark blockquote {
background-color: #272d44; background-color: #272d44;
color: inherit; color: inherit;
} }