Skip to content

Commit

Permalink
remove size from inconoir icons
Browse files Browse the repository at this point in the history
  • Loading branch information
behindadyingstar committed Dec 14, 2024
1 parent 5763099 commit c4ca319
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions apps/website/components/desktop-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ const DesktopFooter = () => {
className="flex justify-center p-3 text-grau"
testId="facebook"
>
<Facebook className="w-6 h-6" />
<Facebook />
</ExternalLink>

<ExternalLink
href="https://www.instagram.com/anna_und_otto/"
className="flex justify-center p-3 text-grau"
testId="instagram"
>
<Instagram className="w-6 h-6" />
<Instagram />
</ExternalLink>
</div>
</div>
Expand Down
12 changes: 6 additions & 6 deletions apps/website/components/mobile-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -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>
Expand Down

0 comments on commit c4ca319

Please sign in to comment.