File size: 492 Bytes
5bd0720
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
27
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    @apply bg-gray-50 text-gray-900 antialiased;
  }
}

@layer components {
  .chat-container {
    @apply flex flex-col h-screen max-w-4xl mx-auto bg-white shadow-lg;
  }
  
  .message-bubble {
    @apply rounded-2xl px-4 py-3 max-w-xs md:max-w-md break-words;
  }
  
  .user-bubble {
    @apply bg-blue-600 text-white ml-auto;
  }
  
  .assistant-bubble {
    @apply bg-gray-200 text-gray-800 mr-auto;
  }
}