Skip to content

Commit

Permalink
style: トップページのテキストサイズ調整
Browse files Browse the repository at this point in the history
  • Loading branch information
namidapoo committed Dec 31, 2024
1 parent 5ca26db commit 2011677
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ export default async function Home() {
}}
className="w-full max-w-xs mx-auto space-y-2"
>
<p className="text-lg">or</p>
<Button size="lg" className="mx-auto w-full max-w-xs py-6 text-lg">
<p className="text-md">または</p>
<Button size="lg" className="mx-auto w-full max-w-xs py-6 text-md">
<Image
src={GitHubWhite}
alt="GitHub"
width={24}
height={24}
width={20}
height={20}
className="dark:hidden"
priority
/>
<Image
src={GitHubBlack}
alt="GitHub"
width={24}
height={24}
width={20}
height={20}
className="hidden dark:block"
priority
/>
Expand Down
6 changes: 3 additions & 3 deletions app/profile-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const ProfileForm: FC = () => {
control={form.control}
name="username"
render={({ field }) => (
<FormItem className="text-left">
<FormControl className="py-6 text-lg">
<FormItem className="text-left text-lg">
<FormControl className="h-12">
<Input
placeholder="ユーザー名を入力してください。"
{...field}
Expand All @@ -55,7 +55,7 @@ export const ProfileForm: FC = () => {
</FormItem>
)}
/>
<Button className="mx-auto w-full max-w-xs py-6 text-lg">
<Button className="mx-auto w-full max-w-xs py-6 text-md">
振り返りを見る
</Button>
</form>
Expand Down

0 comments on commit 2011677

Please sign in to comment.