1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00
This commit is contained in:
muerwre 2019-07-27 06:51:03 +07:00
parent 1a7557eab4
commit 1b37ed4bbf
6 changed files with 42 additions and 20 deletions

View file

@ -16,7 +16,7 @@ const NodeRelated: FC<IProps> = ({
</div>
<div className={styles.grid}>
{
range(1,7).map(el => (<div className={styles.item} />))
range(1,7).map(el => (<div className={styles.item} key={el} />))
}
</div>
</Group>

View file

@ -17,16 +17,15 @@
}
&:global(.red) {
background: $red;
background: $red_gradient;
}
&:global(.blue) {
background: $blue;
//color: transparentize(black, 0.4);
background: $blue_gradient;
}
&:global(.green) {
background: $green;
background: $green_gradient;
color: transparentize(black, 0.4);
}