diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-01-09 12:59:36 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-01-09 12:59:36 -0600 |
commit | 4f1f8e5f0040c1614bdff611daa60b837e45d0f2 (patch) | |
tree | 62eab92cc1321288d1a230038cdb2d7af252fd73 /static | |
parent | e9706eaea64ed2b762d49827a95be256aefad41a (diff) | |
download | cleberg.net-4f1f8e5f0040c1614bdff611daa60b837e45d0f2.tar.gz cleberg.net-4f1f8e5f0040c1614bdff611daa60b837e45d0f2.tar.bz2 cleberg.net-4f1f8e5f0040c1614bdff611daa60b837e45d0f2.zip |
fix: don't allow post date to shrink or wrap
Diffstat (limited to 'static')
-rw-r--r-- | static/styles.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/styles.css b/static/styles.css index f69e001..fa24a99 100644 --- a/static/styles.css +++ b/static/styles.css @@ -485,7 +485,7 @@ blockquote p { } .post time { - flex: 0 0 auto; + flex-shrink: 0; margin-right: 0.5rem; } |