Skip to content

Commit

Permalink
fix: nit padding adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
thejustinwalsh committed Sep 12, 2024
1 parent 352642a commit fdae879
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function RootLayout({
<div className="min-h-screen">
<Header className="sticky top-0 z-50" />
<main>{children}</main>
<footer className="flex gap-6 flex-wrap items-center justify-center py-4 sticky top-[100vh] text-muted-foreground">
<footer className="flex gap-8 flex-wrap items-center justify-center py-4 sticky top-[100vh] text-muted-foreground">
2024 © Content Ledger
</footer>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/components/wallet-connection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export function WalletConnection() {
<DropdownMenuTrigger asChild>
<Button
variant="outline"
className="flex gap-2 bg-background text-foreground border-2 border-foreground font-slackey md:w-[260px] w-[210px]"
className="flex gap-2 bg-background text-foreground border-2 border-foreground font-slackey md:w-[270px] w-[220px]"
>
<AvatarSNS publicKey={publicKey} />
<div className="md:w-[150px] w-[100px]">
Expand All @@ -106,7 +106,7 @@ export function WalletConnection() {
)}
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent className="md:w-[260px] w-[210px]">
<DropdownMenuContent className="md:w-[270px] w-[220px]">
<DropdownMenuItem onClick={handleDisconnect}>
Disconnect
</DropdownMenuItem>
Expand Down

0 comments on commit fdae879

Please sign in to comment.