From 87bc8425258d61b907440a5aa9a9ce3f2fc3b800 Mon Sep 17 00:00:00 2001 From: Huang Xin Date: Sat, 11 Jan 2025 11:34:43 +0100 Subject: [PATCH] Set default sidebar width to 15% of screen width (#143) --- apps/readest-app/src/services/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/readest-app/src/services/constants.ts b/apps/readest-app/src/services/constants.ts index d8f4478c..0341e822 100644 --- a/apps/readest-app/src/services/constants.ts +++ b/apps/readest-app/src/services/constants.ts @@ -15,7 +15,7 @@ export const SUPPORTED_FILE_EXTS = ['epub', 'mobi', 'azw', 'azw3', 'fb2', 'cbz', export const FILE_ACCEPT_FORMATS = SUPPORTED_FILE_EXTS.map((ext) => `.${ext}`).join(', '); export const DEFAULT_READSETTINGS: ReadSettings = { - sideBarWidth: '25%', + sideBarWidth: '15%', isSideBarPinned: true, notebookWidth: '25%', isNotebookPinned: false,