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

@@ -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 {