Set width of UUID field and move labels to the left on mobile

pull/3659/head
Isaac Connor 2023-01-27 15:52:13 -05:00
parent 3b5ceaddef
commit 5bf89b7178
1 changed files with 8 additions and 0 deletions

View File

@ -61,6 +61,7 @@ input[name="newConfig[ZM_FROM_EMAIL]"],
input[name="newConfig[ZM_URL]"],
input[name="newConfig[ZM_SSMTP_PATH]"],
input[name="newConfig[ZM_CSP_REPORT_URI]"],
input[name="newConfig[ZM_TELEMETRY_UUID]"],
input[name="newStorage[Name]"],
input[name="newStorage[Path]"],
input[name="newStorage[Url]"] {
@ -94,3 +95,10 @@ form {
height: 100%;
padding-top: 4rem;
}
@media screen and (max-width:767px) {
#options label,
label.col-form-label {
text-align: left;
}
}