Adjust title and author size in landscape mode

This commit is contained in:
Lars Kiesow
2026-05-10 00:55:53 +02:00
parent 91bc56e1e1
commit 7d17367c1e
+10
View File
@@ -1120,12 +1120,22 @@ export default {
font-size: 0.85rem;
line-height: 1.5;
}
@media (orientation: landscape) {
.fullscreen .title-author-texts .title-text {
font-size: larger !important;
}
}
.title-author-texts .author-text {
transition: all 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
transition-property: font-size;
font-size: 0.75rem;
line-height: 1.2;
}
@media (orientation: landscape) {
.fullscreen .title-author-texts .author-text {
font-size: inherit !important;
}
}
.fullscreen .title-author-texts {
bottom: calc(50% - var(--cover-image-height) / 2 + 50px);