1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

cleanup and partial ITag

This commit is contained in:
Fedor Katurov 2019-10-09 17:05:22 +07:00
parent 17f58daa67
commit cb2f784ed2
3 changed files with 9 additions and 15 deletions

View file

@ -19,9 +19,7 @@ const EditorExample: FC<IProps> = () => (
<Card className={styles.wrap} seamless>
<Group horizontal className={styles.group} seamless>
<div className={styles.editor}>
<Panel
className={classNames(styles.editor_panel, styles.editor_image_panel)}
>
<Panel className={classNames(styles.editor_panel, styles.editor_image_panel)}>
<Scroll>
<CellGrid className={styles.editor_image_container} size={200}>
<div className={styles.editor_image} />
@ -48,11 +46,11 @@ const EditorExample: FC<IProps> = () => (
<Tags
tags={[
{ title: 'Избранный', feature: 'red' },
{ title: 'Плейлист', feature: 'green' },
{ title: 'Избранный' },
{ title: 'Плейлист' },
{ title: 'Просто' },
{ title: '+ фото', feature: 'black' },
{ title: '+ с музыкой', feature: 'black' }
{ title: '+ фото' },
{ title: '+ с музыкой' },
]}
/>
</Group>