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

messages form

This commit is contained in:
Fedor Katurov 2019-11-12 14:38:25 +07:00
parent e45dee3c9f
commit 98c66dec8c
24 changed files with 456 additions and 42 deletions

View file

@ -0,0 +1,37 @@
.wrap {
@include outer_shadow();
padding: $gap;
background: $content_bg;
position: relative;
textarea {
// margin-bottom: 40px;
}
}
.content {
@include inner_shadow();
background: $input_bg_color;
border-radius: $input_radius;
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
padding: 0 $gap / 2 $gap / 2 $gap / 2;
}
.error {
position: absolute;
top: 100%;
padding: 10px;
left: 5%;
width: 90%;
background: linear-gradient($red, transparentize($red, 0.1));
z-index: 1;
box-sizing: border-box;
text-align: center;
border-radius: 0 0 $radius $radius;
}