Skip to content

Commit

Permalink
Fix text color
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Jan 27, 2025
1 parent f8819b8 commit 1ee2fb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Countdown/Countdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const CountdownTimer = ({targetDate}: CountdownProps) => {
}, [targetDate]);

return (
<div className="flex items-start justify-center space-x-4 p-4 rounded-lg">
<div className="flex items-start justify-center space-x-4 p-4 rounded-lg text-white">
<div className="text-center">
<div className="text-6xl font-bold">{timeLeft.days}</div>
<div className="text-sm uppercase">Jours</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Speakers/Speaker/Speaker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Speaker {
}

const SpeakerCard = ({ speaker }: { speaker: Speaker }) => (
<div className="flex flex-col justify-center cursor-pointer">
<div className="text-dark flex flex-col justify-center cursor-pointer">
<div className="flex gap-2 mb-2">
{/* <img
src={`/${speaker.company.toLowerCase()}-logo.svg`}
Expand Down

0 comments on commit 1ee2fb3

Please sign in to comment.