Merge pull request #1283 from bradleypriest/pr/chat-scroll
ui(chat): fix double-scroll in web UI
This commit is contained in:
@@ -6,6 +6,8 @@
|
|||||||
--shell-focus-duration: 220ms;
|
--shell-focus-duration: 220ms;
|
||||||
--shell-focus-ease: cubic-bezier(0.2, 0.85, 0.25, 1);
|
--shell-focus-ease: cubic-bezier(0.2, 0.85, 0.25, 1);
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
height: 100vh;
|
||||||
|
overflow: hidden;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: var(--shell-nav-width) minmax(0, 1fr);
|
grid-template-columns: var(--shell-nav-width) minmax(0, 1fr);
|
||||||
grid-template-rows: var(--shell-topbar-height) 1fr;
|
grid-template-rows: var(--shell-topbar-height) 1fr;
|
||||||
@@ -309,6 +311,11 @@
|
|||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Chat handles its own scrolling (chat-thread); avoid double scrollbars. */
|
||||||
|
.content--chat {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.shell--chat .content {
|
.shell--chat .content {
|
||||||
/* No-op: keep chat layout consistent with other tabs */
|
/* No-op: keep chat layout consistent with other tabs */
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user