fix: restore chat container height
This commit is contained in:
parent
35dc89abed
commit
91371b4e94
@ -5,8 +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: calc(var(--app-viewport, 100vh) - 40px);
|
height: var(--app-viewport, 100vh);
|
||||||
padding-bottom: 180px;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
backdrop-filter: blur(6px);
|
backdrop-filter: blur(6px);
|
||||||
}
|
}
|
||||||
@ -16,7 +16,8 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding: 24px;
|
padding: 24px;
|
||||||
padding-bottom: calc(120px + var(--app-bottom-inset, 0px));
|
padding-top: 30px;
|
||||||
|
padding-bottom: calc(100px + var(--app-bottom-inset, 0px));
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
@ -50,7 +51,7 @@
|
|||||||
.scroll-lock-toggle {
|
.scroll-lock-toggle {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 28px;
|
right: 28px;
|
||||||
bottom: 200px;
|
bottom: 140px;
|
||||||
z-index: 25;
|
z-index: 25;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@ -3,10 +3,10 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
min-height: var(--app-viewport, 100vh);
|
height: var(--app-viewport, 100vh);
|
||||||
|
align-items: stretch;
|
||||||
background: var(--claude-bg);
|
background: var(--claude-bg);
|
||||||
color: var(--claude-text);
|
color: var(--claude-text);
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user