fix(ui): fix fetch indicator margin

This commit is contained in:
Łukasz Mierzwa
2018-07-19 20:57:55 +02:00
parent 3aa1d868c8
commit 19b0fe2190
3 changed files with 4 additions and 4 deletions

View File

@@ -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"

View File

@@ -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

View File

@@ -1,3 +1,3 @@
.navbar-brand {
min-width: 3.5rem;
min-width: 2.5rem;
}