diff options
| author | Christian Cleberg <[email protected]> | 2026-07-16 13:26:36 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-07-16 13:26:36 -0500 |
| commit | c53cc56db024c1eb832b9ca2d066fb10e2868893 (patch) | |
| tree | e050bb30d2bc8e0e37dce1f3d9a51806de366102 /theme | |
| parent | 92bad2eb33561b68f8e84b9544943d3a8b7ae073 (diff) | |
| download | cleberg.net-c53cc56db024c1eb832b9ca2d066fb10e2868893.tar.gz cleberg.net-c53cc56db024c1eb832b9ca2d066fb10e2868893.tar.bz2 cleberg.net-c53cc56db024c1eb832b9ca2d066fb10e2868893.zip | |
fix collapsed whitespace inside blockquotes
Diffstat (limited to 'theme')
| -rw-r--r-- | theme/static/styles.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css index 618b1aa..19e4711 100644 --- a/theme/static/styles.css +++ b/theme/static/styles.css @@ -12,7 +12,8 @@ img { max-width: 100%; } footer { margin: 2rem 0;} pre, blockquote { margin: 1rem 0; padding: 0.5rem; background-color: #eee; } pre { overflow: auto; white-space: pre; } -blockquote p { margin: 0; } +blockquote p { margin: 0; margin-bottom: 1rem; } +blockquote p:last-child { margin-bottom: 0; } code { color: #942192; } @media (prefers-color-scheme: dark) { body { background-color: #181a1b; color: #cccccc; } |
