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 15:15:45 +07:00
parent 98c66dec8c
commit 371f47f866
7 changed files with 98 additions and 16 deletions

View file

@ -2,10 +2,11 @@
@include outer_shadow();
padding: $gap;
background: $content_bg;
position: relative;
// position: relative;
textarea {
// margin-bottom: 40px;
padding-bottom: 0 !important;
}
}
@ -21,6 +22,12 @@
justify-content: center;
flex-direction: row;
padding: 0 $gap / 2 $gap / 2 $gap / 2;
:global(.loader-circle) {
svg {
fill: $wisegreen;
}
}
}
.error {
@ -35,3 +42,19 @@
text-align: center;
border-radius: 0 0 $radius $radius;
}
.loader {
position: absolute;
right: 50%;
bottom: 0;
z-index: 2;
padding: $gap;
text-transform: uppercase;
background: $wisegreen;
border-radius: $radius;
transform: translate(50%, -10px);
svg {
fill: white;
}
}