mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
improve vertical spacing in drawer
This commit is contained in:
parent
98df8ad854
commit
28f4d34b0a
4 changed files with 27 additions and 18 deletions
|
|
@ -1,25 +1,27 @@
|
|||
import './listInfoDrawer.css';
|
||||
|
||||
import { Divider, Drawer } from 'antd';
|
||||
import ButtonGroup from 'antd/lib/button/button-group';
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import { RouteComponentProps } from 'react-router-dom';
|
||||
|
||||
import { Language } from '../interfaces/Language';
|
||||
import { License } from '../interfaces/License';
|
||||
import { List } from '../interfaces/List';
|
||||
import { Maintainer } from '../interfaces/Maintainer';
|
||||
import { Software } from '../interfaces/Software';
|
||||
import { Syntax } from '../interfaces/Syntax';
|
||||
import { Tag } from '../interfaces/Tag';
|
||||
import { Description } from './Description';
|
||||
import { LanguageCloud } from './languageCloud';
|
||||
import { LicenseTag } from './LicenseTag';
|
||||
import { LinkButton } from './LinkButton';
|
||||
import { Maintainers } from './Maintainers';
|
||||
import { PublishedDate } from './PublishedDate';
|
||||
import { SoftwareCloud } from './softwareCloud';
|
||||
import { SubscribeButtons } from './SubscribeButtons';
|
||||
import { SyntaxTag } from './SyntaxTag';
|
||||
import { TagCloud } from './tagCloud';
|
||||
import { Language } from '../../interfaces/Language';
|
||||
import { License } from '../../interfaces/License';
|
||||
import { List } from '../../interfaces/List';
|
||||
import { Maintainer } from '../../interfaces/Maintainer';
|
||||
import { Software } from '../../interfaces/Software';
|
||||
import { Syntax } from '../../interfaces/Syntax';
|
||||
import { Tag } from '../../interfaces/Tag';
|
||||
import { Description } from '../Description';
|
||||
import { LanguageCloud } from '../languageCloud';
|
||||
import { LicenseTag } from '../LicenseTag';
|
||||
import { LinkButton } from '../LinkButton';
|
||||
import { Maintainers } from '../Maintainers';
|
||||
import { PublishedDate } from '../PublishedDate';
|
||||
import { SoftwareCloud } from '../softwareCloud';
|
||||
import { SubscribeButtons } from '../SubscribeButtons';
|
||||
import { SyntaxTag } from '../SyntaxTag';
|
||||
import { TagCloud } from '../tagCloud';
|
||||
|
||||
interface Props {
|
||||
list: List;
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
import { ListInfoDrawer } from './ListInfoDrawer';
|
||||
|
||||
export { ListInfoDrawer };
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
h3 {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 0.2em;
|
||||
}
|
||||
|
|
@ -8,7 +8,7 @@ import { Maintainer } from '../../interfaces/Maintainer';
|
|||
import { Software } from '../../interfaces/Software';
|
||||
import { Syntax } from '../../interfaces/Syntax';
|
||||
import { Tag } from '../../interfaces/Tag';
|
||||
import { ListInfoDrawer } from '../ListInfoDrawer';
|
||||
import { ListInfoDrawer } from '../listInfoDrawer';
|
||||
|
||||
interface Props {
|
||||
lists: List[];
|
||||
|
|
|
|||
Loading…
Reference in a new issue