diff options
author | Alex Scerba <alex@scerba.org> | 2024-12-06 10:47:22 -0500 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-12-06 10:47:22 -0500 |
commit | 9107a2c0f0396cce8df1e1bde271b0162f509934 (patch) | |
tree | c3073647c94305281067d4ef35ac0837a1ebbcb4 | |
parent | 29e33d71bc020b24bf8e072632377c4f1d45460e (diff) |
Fix line overlap for blog entries with long titles
-rw-r--r-- | static/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index cdb334c..7f8b294 100644 --- a/static/style.css +++ b/static/style.css @@ -213,7 +213,8 @@ p:not(:last-child) { }
.entries p {
- line-height: .5;
+ line-height: 1.4;
+ margin-bottom: 1.2rem;
}
pre {
|