Skip to content

Commit

Permalink
Tweak spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
ciampo committed Jul 24, 2024
1 parent b0b2283 commit 81f5396
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/radio-control/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function RadioControl(
help={ help }
className={ clsx( className, 'components-radio-control' ) }
>
<VStack spacing={ 2 }>
<VStack spacing={ 3 }>
{ options.map( ( option, index ) => (
<div
key={ `${ id }-${ index }` }
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/radio-control/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: auto minmax(0, max-content);
column-gap: $grid-unit-15;
column-gap: $grid-unit-10;
align-items: center;
}

Expand Down Expand Up @@ -49,7 +49,7 @@
grid-column: 2;
grid-row: 2;

padding-block-start: $grid-unit-10;
padding-block-start: $grid-unit-05;

// Override the top margin of the StyledHelp component from BaseControl.
// TODO: we should tweak the StyledHelp component to not have a top margin.
Expand Down

0 comments on commit 81f5396

Please sign in to comment.