Skip to content

Commit 2df87c2

Browse files
committed
Change button border width
(#92)
1 parent 5e6bc4c commit 2df87c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/app/components/book-detail/BookDetailEditButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { Button } from '@mantine/core';
12
import { useLocation, useNavigate } from '@remix-run/react';
23
import { MdEdit } from 'react-icons/md';
3-
import { Button } from '@mantine/core';
44
import { RiArrowGoBackLine } from 'react-icons/ri';
55

66
interface BookDetailEditButtonProps {
@@ -17,7 +17,7 @@ const BookDetailEditButton = ({ bookId }: BookDetailEditButtonProps) => {
1717
leftSection={<RiArrowGoBackLine />}
1818
variant="light"
1919
fz="lg"
20-
bd="solid 1px"
20+
bd="solid 2px"
2121
onClick={() => navigate(`/home/books/${bookId}`)}
2222
>
2323
キャンセル

frontend/app/components/books/BookSelectedDialog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Button, Center, Dialog, Stack, Text } from '@mantine/core';
22
import { useAtom } from 'jotai';
3-
import { selectedBooksAtom } from '~/stores/cartAtom';
3+
import { selectedBooksAtom } from '~/stores/bookAtom';
44

55
const BookSelectedDialog = () => {
66
const [selectedBook, setSelectedBook] = useAtom(selectedBooksAtom);
@@ -27,7 +27,7 @@ const BookSelectedDialog = () => {
2727
<Button
2828
fz="xs"
2929
variant="light"
30-
bd="solid 1px"
30+
bd="solid 2px"
3131
onClick={() => setSelectedBook([])}
3232
>
3333
選択を解除する

0 commit comments

Comments
 (0)