fix: loading indicator on claimList

This commit is contained in:
Sean Yesmunt 2019-10-10 13:39:44 -04:00
parent 0fcadf658e
commit db1029a441
2 changed files with 1 additions and 5 deletions

View file

@ -91,7 +91,7 @@ export default function ClaimList(props: Props) {
{header !== false && (
<div className={classnames('claim-list__header', { 'claim-list__header--small': type === 'small' })}>
{header}
{loading && <Spinner light type="small" />}
{loading && <Spinner type="small" />}
<div className="claim-list__alt-controls">
{headerAltControls}
{defaultSort && (

View file

@ -26,8 +26,4 @@
fieldset:not(:first-child) {
margin-top: var(--spacing-large);
}
label {
color: $lbry-white;
}
}