fix(ui): remove padding from the spinner

When filter is not yet applied we draw a spinner icon that uses badge class on the parent element, remove padding from parent so we don't end up resizing parent
This commit is contained in:
Łukasz Mierzwa
2019-03-26 22:04:37 -07:00
parent d4032ea816
commit 07566c9e87

View File

@@ -76,7 +76,7 @@ const FilterInputLabel = observer(
</span>
) : null
) : (
<span className="badge mr-1">
<span className="badge mr-1 p-0">
<FontAwesomeIcon icon={faSpinner} spin />
</span>
)