mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
47 lines
707 B
SCSS
47 lines
707 B
SCSS
@import "src/styles/variables";
|
|
|
|
$secondary_color: darken(desaturate($blue, 100%), 30%);
|
|
$vk_color: $secondary_color;
|
|
|
|
.dialog {}
|
|
|
|
.wrap {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
padding: $login_dialog_padding;
|
|
|
|
button {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
.secondary_button {
|
|
background: $content_bg;
|
|
box-shadow: inset $vk_color 0 0 0 2px;
|
|
color: $vk_color;
|
|
|
|
svg {
|
|
fill: $vk_color;
|
|
margin-right: $gap;
|
|
}
|
|
}
|
|
|
|
.forgot_button {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.buttons {
|
|
margin: $gap * 2 0 0 0 !important;
|
|
padding: $gap * 2 0 0 0;
|
|
border-top: 1px solid black;
|
|
}
|
|
|
|
.links {
|
|
font: $font_14_regular;
|
|
text-align: center;
|
|
|
|
a {
|
|
color: lighten($content_bg, 40%);
|
|
}
|
|
}
|