Skip to content

Commit

Permalink
chore: effective mspaint usage
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasG04 committed Aug 12, 2022
1 parent 48111e7 commit 5669c13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified public/planets/earth.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Planets/PlanetPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const PlanetPicker = ({ activePlanets, setActivePlanets }: Props) => {
<Flex flexFlow="row nowrap">
{planets.map((planet) => (
<Flex _hover={{ cursor: 'pointer' }} flexFlow="column nowrap" align="center" p={2} mx={2} borderRadius="5px" bgColor={activePlanets.includes(planet.name) ? 'green.400' : 'gray.300'} onClick={() => togglePlanet(planet.name)}>
<Image src={planet.img} alt={planet.name} w="50px" />
<Image src={planet.img} alt={planet.name} w="50px" borderRadius="full" />
<Text>{planet.name}</Text>
</Flex>
))}
Expand Down

1 comment on commit 5669c13

@jchristgit
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Impressive work, Nick. Keep it up.

Please sign in to comment.