Merge pull request #2353 from thornbill/comics-player-height

Fix scaling in comics player
This commit is contained in:
Bill Thornton 2021-01-27 10:08:41 -05:00 committed by GitHub
commit 441d7a4236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View File

@ -9,6 +9,8 @@ import ServerConnections from '../../components/ServerConnections';
import { Swiper } from 'swiper/swiper-bundle.esm';
import 'swiper/swiper-bundle.css';
import './style.scss';
export class ComicsPlayer {
constructor() {
this.name = 'Comics Player';

View File

@ -0,0 +1,14 @@
#comicsPlayer {
.slideshowSwiperContainer {
height: 100%;
}
.slider-zoom-container {
text-align: center;
height: 100%;
}
.swiper-slide-img {
max-height: 100%;
}
}