1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix scaling in comics player

This commit is contained in:
Bill Thornton 2021-01-26 12:40:50 -05:00
parent a77f9891b2
commit b5029422f8
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%;
}
}