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;
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);