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:
parent
e45dee3c9f
commit
98c66dec8c
24 changed files with 456 additions and 42 deletions
37
src/components/profile/MessageForm/styles.scss
Normal file
37
src/components/profile/MessageForm/styles.scss
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue