This commit is contained in:
typhon8 2026-05-04 02:34:59 +03:00 committed by GitHub
commit 9546b29115
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}
}