Skip to content

Commit

Permalink
remove fixed width in RadioGroup; set height of header
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatherinetan committed Dec 8, 2024
1 parent 4a9d70e commit 5a4b1dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions components/Header/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export const Container = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
padding: 20px 24px 12px;
z-index: 500;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
Expand Down
2 changes: 1 addition & 1 deletion components/RadioGroup/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const ComponentContainer = styled.div`
display: flex;
flex-direction: column;
gap: 16px;
width: 100%;
`;

export const RadioButton = styled.button<SelectedProps>`
Expand All @@ -19,7 +20,6 @@ export const RadioButton = styled.button<SelectedProps>`
$isSelected ? COLORS.sproutLight : 'white'};
border: 1px solid transparent;
border-radius: 8px;
width: 345px;
height: 48px;
align-items: center;
justify-content: space-between;
Expand Down

0 comments on commit 5a4b1dd

Please sign in to comment.