Fixed: Discovery page movie titles wrapping on mobile viewports

Allow long movie titles to wrap to multiple lines on small screens so status icons remain visible.

Fixes #11344
This commit is contained in:
brian 2026-03-31 19:16:52 -04:00
parent 4b85fab05b
commit 551a53e073
3 changed files with 29 additions and 2 deletions

View file

@ -103,4 +103,19 @@ $hoverScale: 1.05;
.overview {
display: none;
}
.title {
white-space: normal;
word-wrap: break-word;
font-size: 18px;
}
.titleRow {
align-items: flex-start;
flex-direction: column;
}
.actions {
margin-top: 5px;
}
}

View file

@ -110,7 +110,10 @@ $hoverScale: 1.05;
}
@media only screen and (max-width: $breakpointSmall) {
.container {
padding: 5px;
.title {
padding: 0 5px;
text-align: left;
white-space: normal !important;
word-wrap: break-word;
}
}

View file

@ -3,3 +3,12 @@
text-align: center;
font-size: $smallFontSize;
}
@media only screen and (max-width: $breakpointSmall) {
.info {
padding: 0 5px;
text-align: left;
white-space: normal;
word-wrap: break-word;
}
}