diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-08 16:40:21 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-08 17:28:49 +0300 |
commit | 32b1d32572c45447246d879856c8d23407fc792e (patch) | |
tree | c4d58cc59989802e674dc3af236998c9e5494047 /assets | |
parent | bootstrap: make headers smaller still (diff) | |
download | jekyll-theme-32b1d32572c45447246d879856c8d23407fc792e.tar.gz jekyll-theme-32b1d32572c45447246d879856c8d23407fc792e.zip |
posts: use proper flexbox for spacing
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/common/misc.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/assets/css/common/misc.css b/assets/css/common/misc.css index f5a1e95..51fc627 100644 --- a/assets/css/common/misc.css +++ b/assets/css/common/misc.css @@ -46,9 +46,8 @@ pre code { display: flex; flex-wrap: wrap; align-items: baseline; + justify-content: space-between; } -@media (min-width: 768px) { - .post-date { - text-align: right; - } +.post-date { + text-align: right; } |