Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 9dc7536

Browse files
committed
fix: use smaller card and title
1 parent 67bb111 commit 9dc7536

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/components/addManga/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { AddMangaForm } from './form';
66

77
const useStyles = createStyles((theme) => ({
88
card: {
9-
height: 350,
10-
width: 210,
9+
height: 320,
10+
width: 200,
1111
display: 'flex',
1212
justifyContent: 'center',
1313
alignItems: 'center',

src/components/mangaCard.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ import { useUpdateModal } from './updateManga';
1010

1111
const useStyles = createStyles((theme, _params, getRef) => ({
1212
skeletonCard: {
13-
height: 350,
14-
width: 210,
13+
height: 320,
14+
width: 200,
1515
},
1616
card: {
1717
position: 'relative',
18-
height: 350,
19-
width: 210,
18+
height: 320,
19+
width: 200,
2020
cursor: 'pointer',
2121
display: 'flex',
2222
flexDirection: 'column',
@@ -216,7 +216,7 @@ export function MangaCard({ manga, onRemove, onUpdate, onRefresh, onClick }: Man
216216
>
217217
{manga.source}
218218
</Badge>
219-
<Title order={3} className={classes.title}>
219+
<Title order={5} className={classes.title}>
220220
{manga.title}
221221
</Title>
222222
</div>

0 commit comments

Comments
 (0)