mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
27 lines
359 B
SCSS
27 lines
359 B
SCSS
@import 'src/styles/variables';
|
|
|
|
.wrap {
|
|
display: grid;
|
|
grid-template-columns: auto;
|
|
grid-column-gap: $gap;
|
|
margin-top: $page_top_offset;
|
|
}
|
|
|
|
.grid {
|
|
@include flow_grid;
|
|
}
|
|
|
|
.row {
|
|
margin-bottom: $gap;
|
|
height: 100%;
|
|
}
|
|
|
|
.description {
|
|
font: $font_14_semibold;
|
|
text-align: center;
|
|
padding: $gap * 2 $gap;
|
|
}
|
|
|
|
.stamp {
|
|
grid-row-end: span 2;
|
|
}
|