Mobile bounds test

This commit is contained in:
ZXY101
2023-09-23 09:07:35 +02:00
parent 98a42a64c3
commit 43b5199bff
3 changed files with 61 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ export type Settings = {
boldFont: boolean;
pageNum: boolean;
hasCover: boolean;
mobile: boolean;
backgroundColor: string;
fontSize: FontSize;
zoomDefault: ZoomModes;
@@ -63,6 +64,7 @@ const defaultSettings: Settings = {
textBoxBorders: false,
boldFont: false,
pageNum: true,
mobile: false,
backgroundColor: '#0d0d0f',
fontSize: 'auto',
zoomDefault: 'zoomFitToScreen',