1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

added text nodes

This commit is contained in:
muerwre 2019-08-19 17:27:45 +07:00
parent 7350201e22
commit f922536ffa
3 changed files with 32 additions and 1 deletions

View file

@ -6,6 +6,7 @@
background: $cell_bg;
border-radius: $cell_radius;
position: relative;
overflow: hidden;
&:global(.is_hero) {
.title {
@ -16,6 +17,16 @@
@include outer_shadow();
}
.text {
line-height: 1.6em;
font-size: 18px;
font: $font_18_regular;
position: absolute;
top: 0;
left: 0;
padding: $gap;
}
.title {
font: $font_cell_title;
@ -49,4 +60,10 @@
.hor-2 {
grid-column-end: span 2;
}
.is_text {
background: none;
padding: 10px;
box-shadow: inset #444 0 0 0 1px;
}
}