Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: トップページとヘッダーのスタイル修正 #40

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const runtime = "edge";

export default async function Home() {
return (
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 h-full pt-24 px-4 text-accent-foreground md:items-center justify-items-center -mt-16">
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 min-h-dvh px-4 text-accent-foreground items-center justify-items-center -mt-24">
<div className="col-span-1 w-full max-w-md text-center space-y-2">
<div className="space-y-8">
<h1 className="font-bold text-2xl text-blue-600 lg:text-5xl">
Expand Down
4 changes: 2 additions & 2 deletions app/recap/components/user-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export const UserButton: FC = () => {
<DropdownMenuTrigger asChild>
<Button
variant="ghost"
className="relative h-10 w-10 border rounded-full"
className="relative h-8 w-8 border rounded-full"
>
<Avatar className="h-9 w-9">
<Avatar className="h-8 w-8">
{session.user.image && (
<AvatarImage
src={session.user.image}
Expand Down
Loading