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

fixed node header

This commit is contained in:
muerwre 2019-08-20 21:53:50 +07:00
parent fc8ac3d541
commit e3d6f60850
2 changed files with 9 additions and 3 deletions

View file

@ -1,12 +1,13 @@
.wrap { .wrap {
background: $node_title_background; // background: $node_title_background;
background: $content_bg;
padding: $gap; padding: $gap;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: stretch; justify-content: stretch;
border-radius: $cell_radius $cell_radius 0 0; border-radius: $radius $radius 0 0;
box-shadow: transparentize(white, 0.97) 0 1px, inset transparentize(white, 0.97) 0 1px; //box-shadow: transparentize(white, 0.97) 0 1px, inset transparentize(white, 0.97) 0 1px;
position: relative; position: relative;
margin-top: -$radius; margin-top: -$radius;
} }

View file

@ -28,6 +28,11 @@
display: flex; display: flex;
align-items: flex-start; align-items: flex-start;
justify-content: flex-start; justify-content: flex-start;
padding-left: $gap;
@include tablet {
padding-left: 0;
}
} }
.node { .node {