mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
grid recent card initial
This commit is contained in:
parent
746d10ce8b
commit
6f76bec2c0
5 changed files with 65 additions and 8 deletions
|
@ -1,3 +1,36 @@
|
|||
.grid {
|
||||
display: grid;
|
||||
}
|
||||
grid-template-rows: repeat(9, 1fr);
|
||||
grid-template-columns: auto;
|
||||
row-gap: $grid_line;
|
||||
justify-content: stretch;
|
||||
flex: 1;
|
||||
|
||||
& > div {
|
||||
// background: $content_bg;
|
||||
// @include outer_shadow();
|
||||
// background: darken($content_bg, 4%);
|
||||
}
|
||||
}
|
||||
|
||||
.item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font: $font_12_regular;
|
||||
border-radius: $radius;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.thumb {
|
||||
height: 100%;
|
||||
width: 40px;
|
||||
margin-right: $grid_line;
|
||||
// padding-left: 100%;
|
||||
background: red;
|
||||
// flex:
|
||||
}
|
||||
|
||||
.info {
|
||||
flex: 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue