UX: improve use of space for readability of admin email modal (#19797)

This commit is contained in:
chapoi 2023-01-09 14:24:58 +01:00 committed by GitHub
parent 06bda1fc62
commit a641ce4b62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

View File

@ -129,3 +129,31 @@
} }
} }
} }
//specific email admin modal styling
.admin-incoming-email-modal {
.modal-inner-container {
width: var(--modal-max-width);
}
.incoming-emails {
label {
float: none;
margin: 0;
width: unset;
}
.control-group {
textarea {
height: 200px;
}
&:last-of-type textarea {
height: 40px;
}
}
.controls {
margin: 0;
}
p {
margin: 5px 0;
}
}
}