| | |
| | body { |
| | font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; |
| | } |
| |
|
| | |
| | #chat { |
| | scroll-behavior: smooth; |
| | } |
| |
|
| | |
| | ::-webkit-scrollbar { |
| | width: 8px; |
| | height: 8px; |
| | } |
| |
|
| | ::-webkit-scrollbar-track { |
| | background: rgba(255, 255, 255, 0.05); |
| | } |
| |
|
| | ::-webkit-scrollbar-thumb { |
| | background: rgba(255, 255, 255, 0.1); |
| | border-radius: 4px; |
| | } |
| |
|
| | ::-webkit-scrollbar-thumb:hover { |
| | background: rgba(255, 255, 255, 0.2); |
| | } |
| |
|
| | |
| | @keyframes pulse { |
| | 0%, 100% { |
| | opacity: 1; |
| | } |
| | 50% { |
| | opacity: 0.5; |
| | } |
| | } |
| |
|
| | .animate-pulse { |
| | animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite; |
| | } |
| |
|
| | |
| | .transition-all { |
| | transition-property: all; |
| | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |
| | transition-duration: 150ms; |
| | } |