-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5763099
commit c4ca319
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ import ExternalLink from "./external-link"; | |
const MobileStickyFooter = () => { | ||
return ( | ||
<footer | ||
className="fixed bottom-0 left-0 right-0 h-20 bg-white border-gray-200 md:hidden" | ||
className="fixed bottom-0 left-0 right-0 h-20 bg-white md:hidden" | ||
data-testid="footer" | ||
> | ||
<div className="h-full max-w-screen-xl px-4 mx-auto"> | ||
|
@@ -14,39 +14,39 @@ const MobileStickyFooter = () => { | |
className="flex items-center justify-center min-w-[48px] min-h-[48px] text-grau" | ||
testId="phone" | ||
> | ||
<Phone className="w-6 h-6" /> | ||
<Phone /> | ||
</ExternalLink> | ||
|
||
<ExternalLink | ||
href="mailto:[email protected]" | ||
className="flex items-center justify-center min-w-[48px] min-h-[48px] text-grau" | ||
testId="mail" | ||
> | ||
<Mail className="w-6 h-6" /> | ||
<Mail /> | ||
</ExternalLink> | ||
|
||
<ExternalLink | ||
href="https://www.google.de/maps/dir//Markt+15,+17235+Neustrelitz" | ||
className="flex items-center justify-center min-w-[48px] min-h-[48px] text-grau" | ||
testId="map" | ||
> | ||
<Map className="w-6 h-6" /> | ||
<Map /> | ||
</ExternalLink> | ||
|
||
<ExternalLink | ||
href="https://www.facebook.com/annaundotto/?locale=de_DE" | ||
className="flex items-center justify-center min-w-[48px] min-h-[48px] text-grau" | ||
testId="facebook" | ||
> | ||
<Facebook className="w-6 h-6" /> | ||
<Facebook /> | ||
</ExternalLink> | ||
|
||
<ExternalLink | ||
href="https://www.instagram.com/anna_und_otto/" | ||
className="flex items-center justify-center min-w-[48px] min-h-[48px] text-grau" | ||
testId="instagram" | ||
> | ||
<Instagram className="w-6 h-6" /> | ||
<Instagram /> | ||
</ExternalLink> | ||
</div> | ||
</div> | ||
|