Skip to content

Commit

Permalink
Fixes #153: remove hardcoded padding in Oval spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
mhnpd committed Aug 26, 2023
1 parent 49a5361 commit dc4ff7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loader/Oval.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Oval: FunctionComponent<OvalProps> = ({
strokeWidthSecondary,
}): ReactElement => (
<div
style={{ ...getDefaultStyle(visible), ...wrapperStyle, padding: 3 }}
style={{ ...getDefaultStyle(visible), ...wrapperStyle}}
className={wrapperClass}
data-testid="oval-loading"
aria-label={ariaLabel}
Expand Down

0 comments on commit dc4ff7e

Please sign in to comment.