refactor(ui): simplify blockquote styling to minimal indent and italic

- Remove colored left border
- Remove background color
- Remove border radius and padding
- Keep only 2rem left padding for indentation
- Keep italic style for differentiation
- Cleaner, more minimal appearance
This commit is contained in:
Gigi
2025-10-13 23:36:28 +02:00
parent 823927525f
commit 40ab215c4d

View File

@@ -95,11 +95,7 @@
.reader-html p, .reader-html div, .reader-html span, .reader-html li, .reader-html td, .reader-html th { font-size: 1em !important; }
.reader-markdown blockquote, .reader-html blockquote {
margin: 1.5rem 0;
padding: 1rem 1.5rem;
border-left: 4px solid rgb(99 102 241); /* indigo-500 */
background: rgb(39 39 42); /* zinc-800 */
border-radius: 0 8px 8px 0;
color: rgb(212 212 216); /* zinc-300 */
padding-left: 2rem;
font-style: italic;
}
.reader-markdown blockquote p, .reader-html blockquote p { margin: 0.5rem 0; }