Skip to content

Commit

Permalink
use px in ProgressBar
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatherinetan committed Dec 23, 2024
1 parent 4804804 commit 8c12dbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/ProgressBar/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import COLORS from '@/styles/colors';

export const BackgroundDiv = styled.div`
width: 100%;
height: 0.375rem;
height: 6px;
background-color: ${COLORS.lightgray};
position: relative;
`;

export const ProgressDiv = styled.div<{ $width: number }>`
width: ${({ $width }) => $width}%;
height: 0.375rem;
height: 100%;
border-radius: 3px;
background-color: ${COLORS.shrub};
top: 0;
Expand Down

0 comments on commit 8c12dbc

Please sign in to comment.