blob: 5db1f251db252f1acb8b5041d99ec668e19fcf54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@import "tailwindcss";
/* DaisyUI v5 — enable the plugin AND bundle the dracula theme (set as default,
applied via <html data-theme="dracula">). Themes not listed here are NOT
bundled, so dracula must be named explicitly, not merely referenced. */
@plugin "daisyui" {
themes: dracula --default;
}
/* App shell fills the viewport and never scrolls/overflows at the page level —
the inner regions (tab strip, chat transcript) own their own scrolling. */
html,
body,
#app {
height: 100%;
}
body {
overflow: hidden;
}
|