v0.8.2 added font resizing pinch zoom
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "jama-frontend",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -95,9 +95,17 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
/* Anchor scroll to bottom so new messages appear above the input */
|
||||
scroll-padding-bottom: 0;
|
||||
overscroll-behavior: contain;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
/* Cap message width and centre on wide screens */
|
||||
.messages-container > * {
|
||||
max-width: 1024px;
|
||||
width: 100%;
|
||||
align-self: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.load-more-btn {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user