Wrap header

This commit is contained in:
2025-03-11 20:11:12 -04:00
parent 1b71e47892
commit 5ad3192747

View File

@ -20,6 +20,8 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-bottom: 30px; margin-bottom: 30px;
width: 100%;
overflow-wrap: break-word;
} }
.ticket-subheader { .ticket-subheader {
@ -49,18 +51,20 @@ h1 {
/* Title Input Styles */ /* Title Input Styles */
.title-input { .title-input {
font-size: 1.5em; font-size: 1em;
font-weight: bold; font-weight: bold;
width: 100%; width: 100%;
border: 2px solid transparent; border: 2px solid transparent;
border-radius: 4px; border-radius: 4px;
padding: 8px; padding: 12px;
margin: -4px; margin: -4px;
word-break: break-word; word-break: break-word;
overflow-wrap: break-word; overflow-wrap: break-word;
white-space: normal; white-space: pre-wrap;
display: block; display: block;
line-height: 1.4; line-height: 1.4;
min-height: fit-content;
height: auto;
}.title-input:not(:disabled) { }.title-input:not(:disabled) {
border-color: var(--border-color); border-color: var(--border-color);
background: var(--bg-primary); background: var(--bg-primary);