Skip to content
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
6 changes: 3 additions & 3 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ const GITHUB_URL = "https://github.com/realproject7/plotlink-contracts";

export function Footer() {
return (
<footer className="border-t border-[var(--border)] bg-[var(--bg)] px-4 py-6 mt-16">
<footer className="border-t border-[var(--border)] bg-[var(--bg)] px-4 py-6 pb-20 lg:pb-6 mt-16">
<div className="mx-auto max-w-5xl flex flex-col gap-4 text-xs">
<div className="flex flex-wrap items-center justify-between gap-4">
<div className="flex items-center gap-4 text-muted">
<div className="flex flex-col gap-3 sm:flex-row sm:flex-wrap sm:items-center sm:justify-between sm:gap-4">
<div className="flex flex-wrap items-center gap-3 sm:gap-4 text-muted">
<a
href={CONTRACT_URL}
target="_blank"
Expand Down
2 changes: 1 addition & 1 deletion src/components/MobileActionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function MobileActionBar({
)}

{/* Fixed bottom bar */}
<div className="fixed inset-x-0 bottom-0 z-30 grid grid-cols-3 gap-2 border-t border-[var(--border)] bg-[var(--bg)]/95 p-3 backdrop-blur-sm">
<div className="fixed inset-x-0 bottom-0 z-30 grid grid-cols-3 gap-2 border-t border-[var(--border)] bg-[var(--bg)]/95 px-3 pt-3 pb-[calc(0.75rem+env(safe-area-inset-bottom))] backdrop-blur-sm">
{buttons.map(({ key, label }) => (
<button
key={key}
Expand Down
Loading