Update web/static/app.css

This commit is contained in:
Joshua Laymon 2025-08-14 16:59:47 +00:00
parent f3dd5bd6e9
commit d1ffe1198b

View File

@ -371,4 +371,30 @@ code,kbd{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono
.help-panel.open { display: block; }
/* optional: smaller heading spacing in the panel */
.help-panel h3 { margin: 4px 0 10px; }
.help-panel h3 { margin: 4px 0 10px; }
/* Reuse the search box look for edit/add form fields */
.input-hero {
width: 100%;
font-size: 16px;
padding: 12px 14px; /* comfortable padding */
border-radius: 22px; /* same “pill” feel */
}
/* For larger textareas on Illustration / Application */
.textarea-hero {
min-height: 220px; /* roomy by default */
resize: vertical;
}
/* Optional: full-width layout inside your form card */
.entry-form .form-row .search-input {
width: 100%;
}
/* Keep the same focus ring as your search input */
.search-input:focus {
outline: none;
border-color: #6b82ff; /* (matches your current focus color) */
box-shadow: 0 0 0 3px rgba(107,130,255,.25);
}