diff --git a/components/Header/styles.ts b/components/Header/styles.ts index 28a9097..3e67f99 100644 --- a/components/Header/styles.ts +++ b/components/Header/styles.ts @@ -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); diff --git a/components/RadioGroup/styles.ts b/components/RadioGroup/styles.ts index de71d18..9c4a0b3 100644 --- a/components/RadioGroup/styles.ts +++ b/components/RadioGroup/styles.ts @@ -10,6 +10,7 @@ export const ComponentContainer = styled.div` display: flex; flex-direction: column; gap: 16px; + width: 100%; `; export const RadioButton = styled.button` @@ -19,7 +20,6 @@ export const RadioButton = styled.button` $isSelected ? COLORS.sproutLight : 'white'}; border: 1px solid transparent; border-radius: 8px; - width: 345px; height: 48px; align-items: center; justify-content: space-between;