33 lines
377 B
SCSS
33 lines
377 B
SCSS
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 70%;
|
|
border-radius: 5px;
|
|
|
|
font-family: $form-font;
|
|
background-color: $white;
|
|
|
|
&__fieldset {
|
|
@extend .fieldset;
|
|
}
|
|
|
|
&__header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
padding: 15px;
|
|
}
|
|
|
|
&__title {
|
|
font-size: 18px;
|
|
}
|
|
|
|
& .favicon {
|
|
height: 30px;
|
|
}
|
|
}
|
|
|
|
form {
|
|
@extend .form;
|
|
}
|