Skip to content

Commit

Permalink
fix: reduce footer content gap on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Oct 8, 2024
1 parent d0d561d commit 5311ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const LINKS = [
export const Footer = () => {
return (
<footer className="text-xs text-apple-gray-500">
<div className="flex gap-6 mobile:flex-col">
<div className="flex gap-6 mobile:flex-col mobile:gap-2">
{FOOTER_SECTIONS.map((section, i) => (
<section key={i}>
<h3 className="text-sm font-semibold uppercase tracking-wider">
Expand Down

0 comments on commit 5311ff0

Please sign in to comment.