Spaces:
Build error
Build error
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| body { | |
| background-color: #0e1621; | |
| color: #f5f5f5; | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; | |
| overflow: hidden; | |
| } | |
| /* Custom Scrollbar for Telegram look */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: transparent; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: rgba(255, 255, 255, 0.1); | |
| border-radius: 3px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: rgba(255, 255, 255, 0.2); | |
| } | |
| .message-bubble { | |
| max-width: 80%; | |
| word-wrap: break-word; | |
| position: relative; | |
| } | |
| .message-bubble.incoming { | |
| border-bottom-left-radius: 0; | |
| } | |
| .message-bubble.outgoing { | |
| border-bottom-right-radius: 0; | |
| } | |
| .encrypted-icon { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { opacity: 0.7; } | |
| 50% { opacity: 1; } | |
| 100% { opacity: 0.7; } | |
| } |