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

fixed node appearance

This commit is contained in:
muerwre 2019-08-20 21:58:14 +07:00
parent e3d6f60850
commit 7f168a93e7
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
.wrap { .wrap {
// background: $node_title_background; // background: $node_title_background;
background: $content_bg; background: $node_bg;
padding: $gap; padding: $gap;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;

View file

@ -28,7 +28,7 @@
display: flex; display: flex;
align-items: flex-start; align-items: flex-start;
justify-content: flex-start; justify-content: flex-start;
padding-left: $gap; padding-left: $gap / 2;
@include tablet { @include tablet {
padding-left: 0; padding-left: 0;

View file

@ -32,7 +32,7 @@ $button_bg_color: $red_gradient;
$comment_bg: lighten($main_bg_color, 0%); $comment_bg: lighten($main_bg_color, 0%);
$panel_bg: transparent; $panel_bg: transparent;
$node_bg: $content_bg; $node_bg: darken($content_bg, 4%);
$node_image_bg: lighten($main_bg_color, 4%); $node_image_bg: lighten($main_bg_color, 4%);
$node_title_background: darken($main_bg_color, 8%); $node_title_background: darken($main_bg_color, 8%);

View file

@ -56,7 +56,7 @@ $shadow_depth_1: transparentize(black, 0.8) 0 1px, inset transparentize(white, 0
$shadow_depth_2: transparentize(black, 0.8) 0 2px, inset transparentize(white, 0.98) 0 1px; $shadow_depth_2: transparentize(black, 0.8) 0 2px, inset transparentize(white, 0.98) 0 1px;
$comment_shadow: $shadow_depth_2; $comment_shadow: $shadow_depth_2;
$node_shadow: transparentize(black, 0.8) 1px 2px; $node_shadow: transparentize(black, 0.8) 0 2px, transparentize(black, 0.8) 0 2px 4px;
$tag_height: 22px; $tag_height: 22px;