Skip to content

Commit

Permalink
Moved to just lg for inline flex
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbreese committed Aug 6, 2024
1 parent 775159e commit c34c0e5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const TableRow = ({id, imageUrl, path, title, phone, email, mapUrl, address, hou
{phone && (
<a
href={`tel:${phone.replaceAll(/[^0-9]/g, "")}`}
className="inline-flex items-center justify-center gap-4 text-16 font-normal leading-[23px] no-underline hover:bg-black-10 hover:text-brick-dark hover:underline focus:bg-none md:justify-start"
className="flex items-center justify-center gap-4 text-16 font-normal leading-[23px] no-underline hover:bg-black-10 hover:text-brick-dark hover:underline focus:bg-none md:justify-start lg:inline-flex"
>
<PhoneIcon
title="Phone Number"
Expand All @@ -171,7 +171,7 @@ const TableRow = ({id, imageUrl, path, title, phone, email, mapUrl, address, hou
{email && (
<a
href={`mailto:${email}`}
className="inline-flex items-center justify-center gap-4 text-16 font-normal leading-[23px] no-underline hover:bg-black-10 hover:text-brick-dark hover:underline focus:bg-none md:justify-start"
className="flex items-center justify-center gap-4 text-16 font-normal leading-[23px] no-underline hover:bg-black-10 hover:text-brick-dark hover:underline focus:bg-none md:justify-start lg:inline-flex"
>
<EnvelopeIcon
title="Email"
Expand Down

0 comments on commit c34c0e5

Please sign in to comment.