Skip to content

Commit

Permalink
🐛 fix(animations.scss): Fix horizontal centering for default spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiderpig86 committed May 30, 2023
1 parent 6600698 commit 50af674
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ fieldset legend {
display: block;
height: 1rem;
width: 1rem;
left: calc(50% - 0.8em);
left: calc(50% - 0.5714285714rem);
top: calc(50% - 0.7407407407em);
position: absolute;
animation: loading 500ms infinite linear;
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-all.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cirrus-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ fieldset legend {
display: block;
height: 1rem;
width: 1rem;
left: calc(50% - 0.8em);
left: calc(50% - 0.5714285714rem);
top: calc(50% - 0.7407407407em);
position: absolute;
animation: loading 500ms infinite linear;
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-core.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ fieldset legend {
display: block;
height: 1rem;
width: 1rem;
left: calc(50% - 0.8em);
left: calc(50% - 0.5714285714rem);
top: calc(50% - 0.7407407407em);
position: absolute;
animation: loading 500ms infinite linear;
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/base/animations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
display: block;
height: 1rem;
width: 1rem;
left: calc(50% - (1em / 1.25));
left: calc(50% - (1rem / 1.75));
top: calc(50% - (1em / 1.35));
position: absolute;
animation: loading 500ms infinite linear;
Expand Down

0 comments on commit 50af674

Please sign in to comment.