Comic viewer is not fit to screen #6405
Unanswered
LacixHU
asked this question in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
My cbz comics on an Android tablet were missing the right side of the pages because the style only has 100% height fitting and therefore it is not considered that the width can go above 100%.
I've made a modification that fits the pictures inside the avialiable space and positions them in the center in the custom css style part but I think it should be in the main code too.
#comicsPlayer .swiper-slide-img { max-height: 100%; max-width: 100%;}
#comicsPlayer .slider-zoom-container {
text-align: center;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
All reactions