Skip to content

Commit

Permalink
Account for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomm1128 committed Dec 12, 2024
1 parent 05d7f1d commit c377cd2
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,15 @@ const HomeAddressStreet = (props: HomeAddressStreetProps): React.ReactElement =>
}
{emphasis == 'none' &&
<div>
<Body>
<Body dark={dark}>
{joinPresent([titleize(address), houseStyle], ' · ')}
</Body>
<Body>{titleize(addressCont)}</Body>
<Body dark={dark}>{titleize(addressCont)}</Body>
<div>
<Body color="light">
<Body
color="light"
dark={dark}
>
{`${titleize(city)}, ${state} ${zipcode}`}
</Body>
</div>
Expand Down

0 comments on commit c377cd2

Please sign in to comment.