This commit is contained in:
parent
a4bb3cfcca
commit
b7e96f915b
2 changed files with 6 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue