File size: 537 Bytes
e39cf8d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | /* static/style.css */
/* Smooth scrolling for the chat window */
#chat-window {
scroll-behavior: smooth;
}
/* Hide the default scrollbar on macOS while keeping it usable */
#chat-window::-webkit-scrollbar {
width: 6px;
}
#chat-window::-webkit-scrollbar-thumb {
background-color: rgba(100, 100, 100, 0.4);
border-radius: 3px;
}
/* Auto‑resize textarea – hide the native resize handle */
textarea {
overflow-y: hidden;
}
/* Dark‑mode transition (nice fade) */
html {
transition: background-color 0.2s, color 0.2s;
}
|