mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 08:51:24 +00:00
spacing hack
This commit is contained in:
parent
7cb3de26cf
commit
b7cb060d7d
1 changed files with 7 additions and 1 deletions
|
@ -10,6 +10,7 @@ import * as PAGES from 'constants/pages';
|
||||||
import Yrbl from 'component/yrbl';
|
import Yrbl from 'component/yrbl';
|
||||||
import usePersistedState from 'effects/use-persisted-state';
|
import usePersistedState from 'effects/use-persisted-state';
|
||||||
import Card from 'component/common/card';
|
import Card from 'component/common/card';
|
||||||
|
import classnames from 'classnames';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
builtinCollections: CollectionGroup,
|
builtinCollections: CollectionGroup,
|
||||||
|
@ -104,7 +105,12 @@ export default function CollectionsListMine(props: Props) {
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{Boolean(hasCollections) && (
|
{Boolean(hasCollections) && (
|
||||||
<div className="section">
|
<div
|
||||||
|
className={classnames({
|
||||||
|
section: showHelp,
|
||||||
|
})}
|
||||||
|
>
|
||||||
|
{/* TODO: fix above spacing hack */}
|
||||||
<div className="claim-grid">
|
<div className="claim-grid">
|
||||||
{unpublishedCollectionsList &&
|
{unpublishedCollectionsList &&
|
||||||
unpublishedCollectionsList.length > 0 &&
|
unpublishedCollectionsList.length > 0 &&
|
||||||
|
|
Loading…
Add table
Reference in a new issue