Skip to content

Commit

Permalink
fix: change border colors to rhyme wih the designs
Browse files Browse the repository at this point in the history
  • Loading branch information
vantage-ola committed Aug 21, 2024
1 parent 682285a commit 7e3dda0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tracknow/web/src/components/SideBar/RightSideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const RightSideBar = () => {
</VStack>
</Center>
<Accordion allowMultiple>
<AccordionItem>
<AccordionItem borderColor="#323536">
<h2>
<AccordionButton>
<Box as='span' color={'grey'} flex='1' textAlign='left'>
Expand All @@ -63,7 +63,7 @@ const RightSideBar = () => {
<Text width="130px" fontSize="10px">Constructor</Text>
<Text width="30px" fontSize="10px">Points</Text>
</Flex>
<Divider mb={2} />
<Divider mb={2} borderColor="#323536" />
{teamStandings.map((team) => (
<Box key={team.Constructor.name}>
<Flex justifyContent="space-between" alignItems="flex-start">
Expand All @@ -83,7 +83,7 @@ const RightSideBar = () => {
))}
</AccordionPanel>
</AccordionItem>
<AccordionItem>
<AccordionItem borderColor="#323536">
<h2>
<AccordionButton>
<Box as='span' flex='1' color={'grey'} textAlign='left'>
Expand All @@ -98,7 +98,7 @@ const RightSideBar = () => {
<Text width="120px" fontSize="10px">Driver</Text>
<Text width="30px" fontSize="10px">Points</Text>
</Flex>
<Divider mb={2} />
<Divider mb={2} borderColor="#323536" />
{driverStandings.map((driver) => (
<Box key={driver.Driver.familyName}>
<Flex p={1} justifyContent="space-between" alignItems="flex-start">
Expand Down

0 comments on commit 7e3dda0

Please sign in to comment.