You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
550 B

@import '../../scss/variables.scss';
.dank-form {
display: flex;
flex-direction: column;
padding: 3ch;
input {
border-radius: 0.25rem;
width: 100%;
font-size: 2rem;
border: 1px solid $color-grey;
&:focus {
outline: 2px solid $color-primary;
}
}
button {
width: 40%;
font-size: 2rem;
border-radius: 0.25rem;
}
label {
margin: 0.5ch;
display: flex;
font-size: 1.5rem;
flex-direction: row;
justify-content: space-between;
input {
margin-left: 2ch;
}
}
}