1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-30 23:26:40 +07:00
This commit is contained in:
muerwre 2019-07-26 17:10:04 +07:00
parent b245cd0640
commit 10a6548d39
5 changed files with 24 additions and 10 deletions
src/components/flow

View file

@ -4,7 +4,7 @@
display: flex;
flex: 0 0;
background: $cell_bg;
border-radius: 4px;
border-radius: $cell_radius;
position: relative;
&:global(.is_hero) {
@ -12,6 +12,7 @@
font-size: 48px;
}
}
@include outer_shadow();
}

View file

@ -29,7 +29,7 @@ export const TestGrid = () => (
<Cell
width={Math.floor(Math.random() * 3)}
height={Math.floor(Math.random() * 3)}
title="Example cell Example cell Example cell Example cell Example cell Example cell Example cell "
title={`Cell ${el}`}
/>
))
}