Skip to content

Commit

Permalink
fix: added padding on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
fluid-design-io committed Oct 21, 2023
1 parent 8bf75fa commit 9d70786
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion apps/web/components/core/site-footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Github, Youtube } from "lucide-react";
import app from "../../../../package.json";
import { cn } from "ui/lib/utils";

const navigation = [
{
Expand All @@ -16,7 +17,12 @@ const navigation = [

function SiteFooter() {
return (
<footer className="border-t border-border/30 bg-background-accent">
<footer
className={cn(
"border-t border-border/30 bg-background-accent",
"pb-[calc(8rem+env(safe-area-inset-bottom))] lg:pb-0",
)}
>
<div className="mx-auto max-w-[120rem] px-6 py-4 md:flex md:items-center md:justify-between lg:px-8">
<div className="flex justify-center space-x-6 md:order-2">
{navigation.map((item) => (
Expand Down

0 comments on commit 9d70786

Please sign in to comment.