fix: restore floating input layout
This commit is contained in:
parent
c6bf3a3986
commit
35dc89abed
@ -5,7 +5,8 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background: rgba(255, 255, 255, 0.78);
|
background: rgba(255, 255, 255, 0.78);
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
min-height: 0;
|
min-height: calc(var(--app-viewport, 100vh) - 40px);
|
||||||
|
padding-bottom: 180px;
|
||||||
position: relative;
|
position: relative;
|
||||||
backdrop-filter: blur(6px);
|
backdrop-filter: blur(6px);
|
||||||
}
|
}
|
||||||
@ -15,11 +16,18 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 24px;
|
padding: 24px;
|
||||||
padding-bottom: calc(220px + var(--app-bottom-inset, 0px));
|
padding-bottom: calc(120px + var(--app-bottom-inset, 0px));
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chat-container .input-area {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
.messages-area::-webkit-scrollbar,
|
.messages-area::-webkit-scrollbar,
|
||||||
.sidebar::-webkit-scrollbar,
|
.sidebar::-webkit-scrollbar,
|
||||||
.conversation-list::-webkit-scrollbar {
|
.conversation-list::-webkit-scrollbar {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user