diff --git a/src/components/ChapterCard.tsx b/src/components/ChapterCard.tsx index 0d755a0588..3da91058c1 100644 --- a/src/components/ChapterCard.tsx +++ b/src/components/ChapterCard.tsx @@ -18,6 +18,7 @@ import MenuItem from '@mui/material/MenuItem'; import BookmarkIcon from '@mui/icons-material/Bookmark'; import client from 'util/client'; +import { Box } from '@mui/system'; interface IProps{ chapter: IChapter @@ -102,7 +103,7 @@ export default function ChapterCard(props: IProps) { padding: 2, }} > -
+
@@ -117,7 +118,7 @@ export default function ChapterCard(props: IProps) { {downloadStatusString}
-
+ @@ -131,9 +132,9 @@ export default function ChapterCard(props: IProps) { onClose={handleClose} > {downloadStatusString.endsWith('Downloaded') - && Delete} + && Delete} {downloadStatusString.length === 0 - && Download } + && Download } sendChange('bookmarked', !chapter.bookmarked)}> {chapter.bookmarked && 'Remove bookmark'} {!chapter.bookmarked && 'Bookmark'}