25 lines
406 B
SCSS
Vendored
25 lines
406 B
SCSS
Vendored
@use "../abstracts/mixin" as *;
|
|
|
|
.contant-form {
|
|
.form-group {
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
label {
|
|
width: 160px;
|
|
}
|
|
input, textarea {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
.action_button {
|
|
margin-top: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.form-control-file::file-selector-button {
|
|
@include btn-base;
|
|
width: fit-content;
|
|
margin-bottom: 0;
|
|
cursor: pointer;
|
|
}
|
|
}
|