space adjust

This commit is contained in:
2026-02-10 12:11:41 -05:00
parent 26024c1426
commit 2df85c8d7f
6 changed files with 50 additions and 7 deletions

View File

@@ -1,16 +1,16 @@
{
"files": {
"main.css": "/static/css/main.6d8e0960.css",
"main.css": "/static/css/main.6dcca5d8.css",
"main.js": "/static/js/main.e64707d9.js",
"static/js/787.c4e7f8f9.chunk.js": "/static/js/787.c4e7f8f9.chunk.js",
"static/media/landing.png": "/static/media/landing.d4c6072db7a67dff6a78.png",
"index.html": "/index.html",
"main.6d8e0960.css.map": "/static/css/main.6d8e0960.css.map",
"main.6dcca5d8.css.map": "/static/css/main.6dcca5d8.css.map",
"main.e64707d9.js.map": "/static/js/main.e64707d9.js.map",
"787.c4e7f8f9.chunk.js.map": "/static/js/787.c4e7f8f9.chunk.js.map"
},
"entrypoints": [
"static/css/main.6d8e0960.css",
"static/css/main.6dcca5d8.css",
"static/js/main.e64707d9.js"
]
}

View File

@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.10/lodash.min.js"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"><link rel="manifest" href="/manifest.json"/><title>Worldshine Transportation</title><script defer="defer" src="/static/js/main.e64707d9.js"></script><link href="/static/css/main.6d8e0960.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.10/lodash.min.js"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"><link rel="manifest" href="/manifest.json"/><title>Worldshine Transportation</title><script defer="defer" src="/static/js/main.e64707d9.js"></script><link href="/static/css/main.6dcca5d8.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -472,6 +472,17 @@ table .group td {
flex-wrap: wrap;
}
/* Consistent vertical spacing for all field wrappers in form pages */
.app-main-content-list-container.form-page .app-main-content-fields-section > div[class*="me-"] {
margin-bottom: 16px;
}
/* Remove excessive section margins inside form pages for consistent row spacing */
.app-main-content-list-container.form-page .app-main-content-fields-section {
margin-top: 0;
margin-bottom: 0;
}
.app-main-content-fields-section.flex-end {
display: flex;
align-items: flex-end;
@@ -569,6 +580,11 @@ table .group td {
.app-main-content-fields-section input[type=text] {
width: 350px;
height: 45px;
font-size: 14px;
}
.app-main-content-fields-section input[type=text]::placeholder {
font-size: 14px;
}
.app-main-content-fields-section.dropdown-container input[type=text] {
@@ -615,11 +631,21 @@ table .group td {
.app-main-content-fields-section input[type=email] {
width: 350px;
height: 45px;
font-size: 14px;
}
.app-main-content-fields-section input[type=email]::placeholder {
font-size: 14px;
}
.app-main-content-fields-section input[type=number] {
width: 350px;
height: 45px;
font-size: 14px;
}
.app-main-content-fields-section input[type=number]::placeholder {
font-size: 14px;
}
.app-main-content-fields-section input[type=file] {
@@ -645,6 +671,23 @@ table .group td {
border-radius: 8px;
margin-left: 0 !important;
border-color: #ccc !important;
font-size: 14px;
}
.app-main-content-fields-section .form-control {
font-size: 14px;
}
.app-main-content-fields-section .form-control::placeholder {
font-size: 14px;
}
.app-main-content-fields-section textarea {
font-size: 14px;
}
.app-main-content-fields-section textarea::placeholder {
font-size: 14px;
}
.app-main-content-fields-section .field-blurb {