fix: chat terminal fixed height, prevent resize during typewriter
This commit is contained in:
parent
40ee9bbec8
commit
b5cddb912e
1 changed files with 4 additions and 4 deletions
|
|
@ -348,7 +348,7 @@ a:hover { color: #fff; text-shadow: none; }
|
||||||
grid-template-columns: 400px 1fr 420px;
|
grid-template-columns: 400px 1fr 420px;
|
||||||
grid-template-rows: auto;
|
grid-template-rows: auto;
|
||||||
gap: 1.5rem;
|
gap: 1.5rem;
|
||||||
align-items: start;
|
align-items: stretch;
|
||||||
animation: fadeIn 1s ease both;
|
animation: fadeIn 1s ease both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1829,9 +1829,9 @@ a:hover { color: #fff; text-shadow: none; }
|
||||||
.chat-terminal {
|
.chat-terminal {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 100%;
|
height: 500px;
|
||||||
min-height: 420px;
|
|
||||||
max-height: 560px;
|
|
||||||
background: rgba(10, 10, 10, 0.85);
|
background: rgba(10, 10, 10, 0.85);
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
backdrop-filter: blur(4px);
|
backdrop-filter: blur(4px);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue