1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 13:26:40 +07:00

NodeNoComments

This commit is contained in:
muerwre 2019-07-27 18:52:47 +07:00
parent ea87b50a83
commit b5b8d78cea
7 changed files with 69 additions and 9 deletions

View file

@ -0,0 +1,16 @@
import React, { FC } from "react";
import { Comment } from "~/components/node/Comment";
import * as styles from './styles.scss';
import {Group} from "~/components/containers/Group";
interface IProps {}
const NodeNoComments: FC<IProps> = () => (
<Group className={styles.wrap}>
<Comment is_empty={true} is_loading={false} style={{ height: 94 }} />
<Comment is_empty={true} is_loading={false} style={{ height: 104 }} />
<Comment is_empty={true} is_loading={false} style={{ height: 100 }} />
</Group>
);
export { NodeNoComments };

View file

@ -0,0 +1,6 @@
.wrap {
height: 300px;
overflow: hidden;
@include after_shade($node_bg);
}