diff --git a/komga-webui/src/components/readers/ContinuousReader.vue b/komga-webui/src/components/readers/ContinuousReader.vue index c4c408d74..c636ad679 100644 --- a/komga-webui/src/components/readers/ContinuousReader.vue +++ b/komga-webui/src/components/readers/ContinuousReader.vue @@ -7,9 +7,10 @@ :key="`page${i}`" :alt="`Page ${page.number}`" :src="shouldLoad(i) ? page.url : undefined" - :height="page.height / (page.width / $vuetify.breakpoint.width)" - :width="$vuetify.breakpoint.width" + :height="calcHeight(page)" + :width="calcWidth(page)" :id="`page${page.number}`" + style="margin: 0 auto;" v-intersect="onIntersect" /> @@ -36,6 +37,7 @@