Adding more top padding to ereader

This commit is contained in:
advplyr
2023-03-06 11:40:00 -06:00
parent bf62b82037
commit f594b734c0
3 changed files with 9 additions and 9 deletions
+5 -5
View File
@@ -39,7 +39,7 @@ export default {
return this.$store.state.playerLibraryItemId
},
readerHeightOffset() {
return this.playerLibraryItemId ? 164 : 64
return this.playerLibraryItemId ? 196 : 96
}
},
methods: {
@@ -140,13 +140,13 @@ export default {
<style>
#epub-frame {
height: calc(100% - 52px);
max-height: calc(100% - 52px);
height: calc(100% - 32px);
max-height: calc(100% - 32px);
overflow: hidden;
}
.reader-player-open #epub-frame {
height: calc(100% - 152px);
max-height: calc(100% - 152px);
height: calc(100% - 132px);
max-height: calc(100% - 132px);
overflow: hidden;
}
</style>