Skip to content

Commit

Permalink
Remove unnecessary HStack and className.
Browse files Browse the repository at this point in the history
  • Loading branch information
afercia committed Sep 11, 2024
1 parent 31ba0ff commit f688d8d
Showing 1 changed file with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -483,14 +483,11 @@ function ShadowInputControl( { label, value, onChange } ) {
};

return (
<HStack align="flex-end">
<UnitControl
label={ label }
__next40pxDefaultSize
value={ value }
onChange={ onValueChange }
className="edit-site-global-styles__shadow-editor-control"
/>
</HStack>
<UnitControl
label={ label }
__next40pxDefaultSize
value={ value }
onChange={ onValueChange }
/>
);
}

0 comments on commit f688d8d

Please sign in to comment.