mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
28 lines
401 B
SCSS
28 lines
401 B
SCSS
.wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
textarea {
|
|
min-height: 62px !important;
|
|
}
|
|
}
|
|
|
|
.input {
|
|
flex: 1;
|
|
padding: $gap / 2;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
flex-direction: row;
|
|
background: transparentize(black, 0.8);
|
|
padding: $gap / 2;
|
|
border-radius: 0 0 $radius $radius;
|
|
flex-wrap: wrap;
|
|
|
|
svg {
|
|
fill: transparentize(white, 0.9);
|
|
}
|
|
|
|
@include outer_shadow();
|
|
}
|