From 1a022f06ee2509757b036471455ad66edd8a81cc Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Sat, 5 Apr 2025 23:20:17 -0500 Subject: [PATCH] fixes for the box --- src/webpage/style.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/webpage/style.css b/src/webpage/style.css index 15d3cd3..463a9c6 100644 --- a/src/webpage/style.css +++ b/src/webpage/style.css @@ -431,11 +431,13 @@ textarea { background: var(--primary-text-soft); mask-repeat: no-repeat; aspect-ratio: 1/1; + flex-shrink: 0; } #emojiTB{ width:.2in; height:.2in; cursor: pointer; + flex-shrink: 0; } .selectarrow { position: absolute; @@ -1086,6 +1088,8 @@ span.instanceStatus { gap: 12px; overflow-y: auto; flex-wrap: wrap; + flex-shrink: 0; + margin-top: 8px; } #ghostMessages { transform: translate(0px, -22px); @@ -1146,16 +1150,19 @@ span.instanceStatus { } #typebox { flex-grow: 1; - width: 100%; + width: 1px; margin-left: 0.06in; white-space: pre; + flex-shrink: 1; + text-wrap: auto; + overflow-y: auto; + margin-right: .03in; } .outerTypeBox { max-height: 50svh; padding: 10px 10px; background: var(--typebox-bg); border-radius: 4px; - overflow-y: auto; display: flex; flex-direction: row; }