mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
fix(ui): fix fetch indicator margin
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
exports[`<FetchIndicator /> matches snapshot when fetch is in progress 1`] = `
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
className="svg-inline--fa fa-circle-notch fa-w-16 fa-spin fa-lg ml-1 text-muted"
|
||||
className="svg-inline--fa fa-circle-notch fa-w-16 fa-spin fa-lg mx-1 text-muted"
|
||||
data-icon="circle-notch"
|
||||
data-prefix="fas"
|
||||
role="img"
|
||||
@@ -26,7 +26,7 @@ exports[`<FetchIndicator /> matches snapshot when fetch is in progress 1`] = `
|
||||
exports[`<FetchIndicator /> matches snapshot when idle 1`] = `
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
className="svg-inline--fa fa-circle-notch fa-w-16 fa-spin fa-lg ml-1 text-muted"
|
||||
className="svg-inline--fa fa-circle-notch fa-w-16 fa-spin fa-lg mx-1 text-muted"
|
||||
data-icon="circle-notch"
|
||||
data-prefix="fas"
|
||||
role="img"
|
||||
|
||||
@@ -17,7 +17,7 @@ class FetchIndicator extends Component {
|
||||
return (
|
||||
<FontAwesomeIcon
|
||||
style={{ opacity: visible ? 1 : 0 }}
|
||||
className="ml-1 text-muted"
|
||||
className="mx-1 text-muted"
|
||||
icon={faCircleNotch}
|
||||
size="lg"
|
||||
spin
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
.navbar-brand {
|
||||
min-width: 3.5rem;
|
||||
min-width: 2.5rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user