Skip to content

Commit

Permalink
Fixes #18199. Set the float to none in the Spinner's CSS. (#19338)
Browse files Browse the repository at this point in the history
Removed instances of float:none; in other CSS rules since the component is already set for this.

Remove the float completely.
  • Loading branch information
mapk authored Jan 7, 2020
1 parent e9905e5 commit 6312ca7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@
.block-editor-link-control .block-editor-link-control__search-input .components-spinner {
display: block;
z-index: 100;
float: none;

&.components-spinner { // Specificity override.
position: absolute;
Expand Down
1 change: 0 additions & 1 deletion packages/components/src/spinner/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
width: 18px;
height: 18px;
opacity: 0.7;
float: right;
margin: 5px 11px 0;
border-radius: 100%;
position: relative;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

.components-spinner {
display: block;
float: none;
margin: 100px auto 0;
}
}
Expand Down

0 comments on commit 6312ca7

Please sign in to comment.