From f17c612d1000ed0084926ac0541826f6ba60c5a7 Mon Sep 17 00:00:00 2001 From: Aria Moradi Date: Sat, 18 Sep 2021 00:00:12 +0430 Subject: [PATCH] fix viewing page number when the string is long --- src/components/manga/reader/PageNumber.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/manga/reader/PageNumber.tsx b/src/components/manga/reader/PageNumber.tsx index 1e91e8d8..45933bca 100644 --- a/src/components/manga/reader/PageNumber.tsx +++ b/src/components/manga/reader/PageNumber.tsx @@ -14,7 +14,7 @@ const useStyles = (settings: IReaderSettings) => makeStyles({ position: 'fixed', bottom: '50px', right: settings.staticNav ? 'calc((100vw - 325px)/2)' : 'calc((100vw - 25px)/2)', - width: '50px', + padding: '2px', textAlign: 'center', backgroundColor: 'rgba(0, 0, 0, 0.3)', borderRadius: '10px',