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

Merge branch 'master' into 15-use-cra-or-nextjs

# Conflicts:
#	src/components/node/CommentForm/index.tsx
#	src/utils/node.ts
This commit is contained in:
Fedor Katurov 2020-11-19 16:29:03 +07:00
commit 332d09e3bd
46 changed files with 936 additions and 487 deletions

View file

@ -2,6 +2,7 @@
html {
min-height: 100vh;
box-sizing: border-box;
}
body {

View file

@ -185,3 +185,18 @@ $login_dialog_padding: $gap $gap 30px $gap;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}
@mixin sidebar {
background: transparentize($content_bg, 0.15);
@include can_backdrop {
background: transparentize($content_bg, 0.3);
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
}
}
@mixin sidebar_content {
background: transparentize($content_bg, 0.4);
box-shadow: transparentize(white, 0.95) -1px 0;
}