We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f335b59 commit 10ec7deCopy full SHA for 10ec7de
src/screens/Reader.tsx
@@ -404,7 +404,9 @@ export function Reader() {
404
flexDirection: 'column',
405
alignContent: 'center',
406
justifyContent: 'center',
407
- minWidth: settings.staticNav ? 'calc((100vw - (100vw - 100%)) - 300px)' : '100vw - (100vw - 100%)', // 100vw = width excluding scrollbar; 100% = width including scrollbar
+ minWidth: settings.staticNav
408
+ ? 'calc((100vw - (100vw - 100%)) - 300px)'
409
+ : 'calc(100vw - (100vw - 100%))', // 100vw = width excluding scrollbar; 100% = width including scrollbar
410
minHeight: '100vh',
411
marginLeft: settings.staticNav ? '300px' : 'unset',
412
}}
0 commit comments