diff --git a/web/static/app.css b/web/static/app.css index a74571d..ab7c509 100644 --- a/web/static/app.css +++ b/web/static/app.css @@ -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; } \ No newline at end of file +.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); +} \ No newline at end of file