v0.8.2 added font resizing pinch zoom

This commit is contained in:
2026-03-12 23:49:24 -04:00
parent 25a1343838
commit 33b5f2ee4d
6 changed files with 23 additions and 5 deletions

View File

@@ -9,6 +9,16 @@
flex-shrink: 0; /* never compress — always visible above keyboard */
position: relative;
z-index: 2;
/* Centre input content with max-width on wide screens */
align-items: stretch;
}
/* All direct children of the input area capped at 1024px and centred */
.message-input-area > * {
max-width: 1024px;
width: 100%;
align-self: center;
box-sizing: border-box;
}
.reply-bar-input {