fixes for the box

This commit is contained in:
MathMan05 2025-04-05 23:20:17 -05:00
parent b667ff7a78
commit 1a022f06ee

View file

@ -431,11 +431,13 @@ textarea {
background: var(--primary-text-soft); background: var(--primary-text-soft);
mask-repeat: no-repeat; mask-repeat: no-repeat;
aspect-ratio: 1/1; aspect-ratio: 1/1;
flex-shrink: 0;
} }
#emojiTB{ #emojiTB{
width:.2in; width:.2in;
height:.2in; height:.2in;
cursor: pointer; cursor: pointer;
flex-shrink: 0;
} }
.selectarrow { .selectarrow {
position: absolute; position: absolute;
@ -1086,6 +1088,8 @@ span.instanceStatus {
gap: 12px; gap: 12px;
overflow-y: auto; overflow-y: auto;
flex-wrap: wrap; flex-wrap: wrap;
flex-shrink: 0;
margin-top: 8px;
} }
#ghostMessages { #ghostMessages {
transform: translate(0px, -22px); transform: translate(0px, -22px);
@ -1146,16 +1150,19 @@ span.instanceStatus {
} }
#typebox { #typebox {
flex-grow: 1; flex-grow: 1;
width: 100%; width: 1px;
margin-left: 0.06in; margin-left: 0.06in;
white-space: pre; white-space: pre;
flex-shrink: 1;
text-wrap: auto;
overflow-y: auto;
margin-right: .03in;
} }
.outerTypeBox { .outerTypeBox {
max-height: 50svh; max-height: 50svh;
padding: 10px 10px; padding: 10px 10px;
background: var(--typebox-bg); background: var(--typebox-bg);
border-radius: 4px; border-radius: 4px;
overflow-y: auto;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
} }