Skip to content

Commit 03e21d0

Browse files
authored
Fix SuperRadioButton flex and adjust Modal body padding. (#335)
1 parent d98259d commit 03e21d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/components/form/superRadioGroup/SuperRadioButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const VuiSuperRadioButton = <T extends string>({
2424
return (
2525
<label className="vuiSuperRadioButton" htmlFor={id}>
2626
<VuiFlexContainer spacing="l" alignItems="center">
27-
<VuiFlexItem grow={false} shrink={1}>
27+
<VuiFlexItem grow={false} shrink={0}>
2828
<input id={id} name={groupName} type="radio" checked={checked} onChange={() => onChange(value)} {...rest} />
2929
</VuiFlexItem>
3030

src/lib/components/modal/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $size: (
7373
}
7474

7575
.vuiModalContent__inner {
76-
padding: $sizeS $sizeM $sizeXxl;
76+
padding: 0 $sizeM $sizeL;
7777
}
7878

7979
// Color

0 commit comments

Comments
 (0)