17 lines
222 B
SCSS
17 lines
222 B
SCSS
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
* {
|
|
margin: 7px 0;
|
|
}
|
|
|
|
p {
|
|
font-size: smaller;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
color: red;
|
|
}
|
|
}
|