Update epub reader settings to be 75vh

This commit is contained in:
advplyr 2025-01-18 11:48:41 -06:00
parent 13d3489cde
commit d1641ac0e8
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
<template>
<div ref="wrapper" class="modal modal-bg w-screen fixed bottom-0 left-0 flex items-center justify-center z-50" :class="halfScreen ? 'h-[50vh] min-h-[400px]' : 'h-screen'" @click.stop @touchstart.stop @touchend.stop>
<div ref="wrapper" class="modal modal-bg w-screen fixed bottom-0 left-0 flex items-center justify-center z-50" :class="threeQuartersScreen ? 'h-[75vh] min-h-[400px]' : 'h-screen'" @click.stop @touchstart.stop @touchend.stop>
<div ref="content" class="relative text-fg h-full w-full bg-bg">
<slot />
</div>
@ -11,7 +11,7 @@ export default {
props: {
value: Boolean,
processing: Boolean,
halfScreen: Boolean
threeQuartersScreen: Boolean
},
data() {
return {