fix: chat terminal fixed height, prevent resize during typewriter

This commit is contained in:
jae 2026-04-04 18:30:05 +00:00
parent 40ee9bbec8
commit b5cddb912e

View file

@ -348,7 +348,7 @@ a:hover { color: #fff; text-shadow: none; }
grid-template-columns: 400px 1fr 420px;
grid-template-rows: auto;
gap: 1.5rem;
align-items: start;
align-items: stretch;
animation: fadeIn 1s ease both;
}
@ -1829,9 +1829,9 @@ a:hover { color: #fff; text-shadow: none; }
.chat-terminal {
display: flex;
flex-direction: column;
height: 100%;
min-height: 420px;
max-height: 560px;
height: 500px;
background: rgba(10, 10, 10, 0.85);
border: 1px solid var(--border);
backdrop-filter: blur(4px);