From 941cafc66477ffe97aaa17f8c6ea9e2602a9229f Mon Sep 17 00:00:00 2001 From: Solomon Victorino Date: Sun, 23 Jun 2024 17:00:55 -0600 Subject: [PATCH] fix: style blockquotes --- style/annotation.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/style/annotation.css b/style/annotation.css index 8a197db..ef3de4a 100644 --- a/style/annotation.css +++ b/style/annotation.css @@ -4,7 +4,7 @@ padding: 2px 6px; } -.annotation { +.annotation, blockquote { padding: 1rem; border-radius: 4px; background: #eee; @@ -12,21 +12,21 @@ color: #222; } -.annotation img { +.annotation img, blockquote img { max-width: 100%; height: auto; } -.annotation a { +.annotation a, blockquote a { background: none; font-weight: 500; } -.annotation ul { +.annotation ul, blockquote ul { padding-left: 1em; } -.dark .annotation { +.dark .annotation, .dark blockquote { background-color: #272d44; color: inherit; }