Files
links/static_src/jbot/index.css
T
junvandCopilot 90ebd68511 jbot: fix Settings scrollbar + remove redundant history link
- Remove 'overflow:hidden' from html/body in index.css — it was blocking
  scroll on all pages (Settings, History). The chat page is self-contained
  via .app {height:100dvh; overflow:hidden} so body lock is unnecessary.
  .app reverted back to height:100dvh (self-sufficient, not body-relative)
- Remove duplicate 历史记录 link from the right-column hint bar; it
  already appears in the ChatPanel header, so three links was redundant

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-17 14:13:37 +10:00

18 lines
329 B
CSS

*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #F1F5F9;
color: #0F172A;
font-family: system-ui, 'Segoe UI', sans-serif;
-webkit-font-smoothing: antialiased;
}
#jbot-root {
height: 100dvh;
height: -webkit-fill-available;
display: flex;
flex-direction: column;
}