Skip to content

Commit

Permalink
Break title on smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
cmahnke committed Jan 4, 2025
1 parent 7b3096e commit 3fa7558
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions assets/scss/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1317,6 +1317,11 @@ a:visited {
.post-title {
box-shadow: inset 0 -15px 0 $text-underline-color;
width: max-content;

@media (max-width : $content-width) {
width: auto;
}

@media (max-width : 35em) {
max-width: 95vw;
}
Expand Down

0 comments on commit 3fa7558

Please sign in to comment.