Skip to content

Commit

Permalink
update radio button
Browse files Browse the repository at this point in the history
  • Loading branch information
storywithoutend committed Apr 22, 2023
1 parent cdc95ac commit 421c159
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/src/components/atoms/Field/Field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ const Label = styled.label<{
`,
)

const InnerLabel = styled(Typography)(() => css``)
const InnerLabel = styled(Typography)(
() => css`
width: 100%;
`,
)

const SecondaryLabel = styled(Typography)(
() => css`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const Input = styled.input<{
place-content: center;
transition: transform 150ms ease-in-out;
width: ${theme.space['5']};
flex: 0 0 ${theme.space['5']};
height: ${theme.space['5']};
background-color: ${theme.colors.border};
Expand Down

0 comments on commit 421c159

Please sign in to comment.