Skip to content

Commit 48eb759

Browse files
committed
Fix footer button layout on mobile
Make footer navigation buttons responsive: - Stack vertically on mobile with full-width buttons - Horizontal layout with space-between on desktop - Add consistent gap-4 spacing between buttons - Improve touch targets on mobile devices
1 parent 17753e8 commit 48eb759

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/portfolio/statsbomb.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -762,11 +762,11 @@ The human side of building production systems: our team in Cairo (2018-2022), wh
762762
<hr class="border-neutral-light my-8" />
763763

764764
{/* Footer Navigation */}
765-
<div class="flex justify-between items-center">
766-
<Button variant="secondary" href="/portfolio">
765+
<div class="flex flex-col md:flex-row gap-4 md:justify-between md:items-center">
766+
<Button variant="secondary" href="/portfolio" class="w-full md:w-auto">
767767
← Back to Portfolio
768768
</Button>
769-
<Button variant="primary" href="/contact">
769+
<Button variant="primary" href="/contact" class="w-full md:w-auto">
770770
Start a Conversation →
771771
</Button>
772772
</div>

0 commit comments

Comments
 (0)