Skip to content

Commit

Permalink
Merge pull request #1234 from nyaruka/loading-wrap
Browse files Browse the repository at this point in the history
Make sure loader animation doesn't wrap
  • Loading branch information
ericnewcomer authored May 1, 2024
2 parents 3269a46 + 2f9f0b5 commit 739537d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/loading/Loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class Loading extends React.Component<LoadingProps, LoadingState>
<div
className={styles.loading}
style={{
width: this.props.size * this.props.units * 2,
width: this.props.size * this.props.units * 2 + this.props.size * 1.5,
height: this.props.size
}}
>
Expand Down

0 comments on commit 739537d

Please sign in to comment.