Skip to content

Commit

Permalink
Change button & internal font size
Browse files Browse the repository at this point in the history
 (#92)
  • Loading branch information
kimurash committed Nov 4, 2024
1 parent f18e7a4 commit 0d12853
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { useFetcher } from '@remix-run/react';
import { useAtom } from 'jotai';
import { MdDeleteForever } from 'react-icons/md';
import { userAtom } from '~/stores/userAtom';
import BookDetailThumbnail from './BookDetailThumbnail';
import BookDetailEditButton from './BookDetailEditButton';
import BookDetailThumbnail from './BookDetailThumbnail';

interface BookDetailControlPanelProps {
id: number;
Expand Down
4 changes: 2 additions & 2 deletions frontend/app/components/book-search/BookSearchModeButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ const BookSearchModeButton = ({
}: SearchModeButtonProps) => {
if (isOpen)
return (
<Button id="search-mode-button" onClick={close} variant="light">
<Button id="search-mode-button" onClick={close} variant="light" size="md">
検索条件を閉じる
</Button>
);
return (
<Button id="search-mode-button" onClick={open} variant="light">
<Button id="search-mode-button" onClick={open} variant="light" size="md">
検索条件を開く
</Button>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FaSearch } from 'react-icons/fa';

const BookSearchSubmitButton = () => {
return (
<Button type="submit" leftSection={<FaSearch />}>
<Button type="submit" leftSection={<FaSearch />} fz="lg">
検索
</Button>
);
Expand Down

0 comments on commit 0d12853

Please sign in to comment.