From aa1aded758d68295e8359f7ca4dc06258a87b85b Mon Sep 17 00:00:00 2001 From: Ariejan de Vroom Date: Thu, 15 Aug 2024 12:02:57 +0200 Subject: [PATCH] Tweak theme a bit more --- themes/devroom-2024/assets/scss/_site.scss | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/themes/devroom-2024/assets/scss/_site.scss b/themes/devroom-2024/assets/scss/_site.scss index f7d0bc1..0f47861 100644 --- a/themes/devroom-2024/assets/scss/_site.scss +++ b/themes/devroom-2024/assets/scss/_site.scss @@ -358,6 +358,10 @@ article.post { font-weight: 600; margin-right: 1.5rem; min-width: 50px; + + @media screen and (max-width: $mobile-width) { + margin-right: 0.5rem; + } } .title { @@ -365,10 +369,13 @@ article.post { font-size: $font-size; font-weight: normal; line-height: 1.3; - overflow: hidden; - text-overflow: ellipsis; + overflow: visible; padding-right: 1rem; - white-space: nowrap; + white-space: wrap; + + @media screen and (max-width: $mobile-width) { + font-size: 14px; + } } .actions {