Less space below player in portrait mode

This commit is contained in:
Chocobozzz 2023-11-09 08:18:27 +01:00
parent adfce264a6
commit c2cf26eaf7
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 2 additions and 1 deletions

View File

@ -257,7 +257,7 @@ my-video-comments {
--player-portrait-mode: 1;
--player-height: calc(100vw / var(--player-ratio)) !important;
max-height: $video-max-height;
max-height: calc(100vh - #{$header-height} - #{$player-portrait-bottom-space});
}
}

View File

@ -79,6 +79,7 @@ $video-thumbnail-small-height: 71px;
$video-thumbnail-small-width: 125px;
$theater-bottom-space: 115px;
$player-portrait-bottom-space: 50px;
$input-foreground-color: $fg-color;
$input-background-color: $bg-color;