diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-01-09 12:45:17 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-01-09 12:45:17 -0600 |
commit | c7f74f34f62d16db3a4bc71e25e848783afd66c4 (patch) | |
tree | f2e51a44aefb1ee5ce689ec65ab030e40fec8b8b | |
parent | 46cd05a4405dde25eb484066c2e03f98bde73cf2 (diff) | |
download | cleberg.net-c7f74f34f62d16db3a4bc71e25e848783afd66c4.tar.gz cleberg.net-c7f74f34f62d16db3a4bc71e25e848783afd66c4.tar.bz2 cleberg.net-c7f74f34f62d16db3a4bc71e25e848783afd66c4.zip |
fix: ensure post title aligns instead of wrapping under the date
-rw-r--r-- | static/styles.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css index 4a14cb4..6317be0 100644 --- a/static/styles.css +++ b/static/styles.css @@ -480,6 +480,10 @@ blockquote p { margin: 0; } +.post { + display: flex; +} + .post time { margin-right: 0.5rem; } |