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 usePersistedState from 'effects/use-persisted-state';
|
||||
import Card from 'component/common/card';
|
||||
import classnames from 'classnames';
|
||||
|
||||
type Props = {
|
||||
builtinCollections: CollectionGroup,
|
||||
|
@ -104,7 +105,12 @@ export default function CollectionsListMine(props: Props) {
|
|||
/>
|
||||
)}
|
||||
{Boolean(hasCollections) && (
|
||||
<div className="section">
|
||||
<div
|
||||
className={classnames({
|
||||
section: showHelp,
|
||||
})}
|
||||
>
|
||||
{/* TODO: fix above spacing hack */}
|
||||
<div className="claim-grid">
|
||||
{unpublishedCollectionsList &&
|
||||
unpublishedCollectionsList.length > 0 &&
|
||||
|
|
Loading…
Add table
Reference in a new issue