More global styling, improved modal form styling

This commit is contained in:
2024-06-14 22:14:33 +02:00
parent 4e708dbd61
commit 92103cea9e
5 changed files with 71 additions and 30 deletions

View File

@ -275,23 +275,37 @@ function handleResize() {
display: inline;
.form-fields {
display: flex;
flex-direction: column;
margin-bottom: 20px;
.form-field {
display: flex;
flex-direction: column;
margin-bottom: 20px;
label {
margin-bottom: 10px;
font-family: 'Poppins';
}
label {
margin-bottom: 5px;
font-family: $titles;
}
input {
max-width: 250px;
font-family: 'Poppins';
border: 1px solid $cyan;
border-radius: 5px;
background-color: rgba($white, 0.8);
padding: 8px 10px;
input {
max-width: 250px;
font-family: $titles;
border-radius: 5px;
padding: 8px 10px;
}
&.two-col {
flex-direction: row;
gap: 20px;
.field {
display: flex;
flex-direction: column;
margin-bottom: 0;
input {
max-width: 105px;
}
}
}
}
}
}
}