1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 14:16:41 +07:00

fixed cyclic dependencies for dialogs

This commit is contained in:
Fedor Katurov 2019-11-25 15:02:32 +07:00
parent d7ed0cbe54
commit c0c832d158
19 changed files with 399 additions and 263 deletions

View file

@ -1,4 +1,5 @@
$vk_color: darken(desaturate($blue, 100%), 30%);
$secondary_color: darken(desaturate($blue, 100%), 30%);
$vk_color: $secondary_color;
.wrap {
display: flex;
@ -15,7 +16,7 @@ $vk_color: darken(desaturate($blue, 100%), 30%);
}
}
.vk {
.secondary_button {
background: $content_bg;
box-shadow: inset $vk_color 0 0 0 2px;
color: $vk_color;
@ -23,11 +24,15 @@ $vk_color: darken(desaturate($blue, 100%), 30%);
svg {
fill: $vk_color;
margin-right: $gap;
// width: 24px;
// height: 24px;
}
}
.forgot_button {
background: $content_bg;
box-shadow: none;
color: $secondary_color;
}
.buttons {
margin: $gap * 2 0 0 0 !important;
padding: $gap * 2 0 0 0;
@ -41,3 +46,12 @@ $vk_color: darken(desaturate($blue, 100%), 30%);
// text-align: left;
}
}
.links {
font: $font_14_regular;
text-align: center;
a {
color: lighten($content_bg, 40%);
}
}