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 {