From 5ad319274792102e1d66faeafeeb3b796be71813 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Tue, 11 Mar 2025 20:11:12 -0400 Subject: [PATCH] Wrap header --- assets/css/ticket.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/assets/css/ticket.css b/assets/css/ticket.css index 18f8912..76d6718 100644 --- a/assets/css/ticket.css +++ b/assets/css/ticket.css @@ -20,6 +20,8 @@ display: flex; flex-direction: column; margin-bottom: 30px; + width: 100%; + overflow-wrap: break-word; } .ticket-subheader { @@ -49,18 +51,20 @@ h1 { /* Title Input Styles */ .title-input { - font-size: 1.5em; + font-size: 1em; font-weight: bold; width: 100%; border: 2px solid transparent; border-radius: 4px; - padding: 8px; + padding: 12px; margin: -4px; word-break: break-word; overflow-wrap: break-word; - white-space: normal; + white-space: pre-wrap; display: block; line-height: 1.4; + min-height: fit-content; + height: auto; }.title-input:not(:disabled) { border-color: var(--border-color); background: var(--bg-primary);