android
All checks were successful
/ upload (release) Successful in 21s

This commit is contained in:
pavel 2026-02-13 20:23:13 +01:00
commit b7e96f915b
2 changed files with 6 additions and 1 deletions

View file

@ -29,6 +29,7 @@
body {
margin: 0;
height: 100vh;
height: 100dvh;
background: var(--bg-darker);
color: var(--text-normal);
font-family: var(--font-main);
@ -135,6 +136,7 @@ select {
/* Main Layout */
.shell {
height: 100vh;
height: 100dvh;
display: grid;
grid-template-columns: 72px 240px 1fr 240px;
background: var(--bg-main);
@ -528,6 +530,8 @@ select {
flex-direction: column;
background: var(--bg-main);
min-width: 0;
min-height: 0;
/* Important for flex child overflow */
}
.chat-header {
@ -634,6 +638,7 @@ select {
/* Chat Input */
.chat-input-wrapper {
padding: 0 16px 24px;
padding-bottom: clamp(24px, calc(24px + env(safe-area-inset-bottom)), 40px);
}
.message-form {