Skip to content

Commit

Permalink
fi
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfyh committed Jul 14, 2024
1 parent b6b6982 commit 3957cff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ const Home: React.FC = () => {
);

if (daysUntilEvent < 7) {
pinBackground = "#0096ff"; // Blue for events less than a week away
pinBorderColor = "#0096ff"; // Blue for events less than a week away
pinBackground = "#ff4a4a"; // Blue for events less than a week away
pinBorderColor = "#ff4a4a"; // Blue for events less than a week away
} else {
pinBackground = "#ff4a4a"; // Red for events more than a week away
pinBorderColor = "#ff4a4a"; // Red for events more than a week away
pinBackground = "#0096ff"; // Red for events more than a week away
pinBorderColor = "#0096ff"; // Red for events more than a week away
}
}
}
Expand Down

0 comments on commit 3957cff

Please sign in to comment.