31 lines
431 B
SCSS
31 lines
431 B
SCSS
form {
|
|
label {
|
|
min-width: 15rem;
|
|
display: inline-block;
|
|
height: 1.5rem;
|
|
}
|
|
|
|
input {
|
|
&[type="checkbox"] {
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
margin-left: 0rem;
|
|
}
|
|
&[type="text"],
|
|
&[type="number"],
|
|
{
|
|
min-height: 1.5rem;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
}
|
|
|
|
button {
|
|
&[type="submit"] {
|
|
float: right;
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
}
|