common.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* 侧边栏 */
  2. .sidebar {
  3. @apply w-64 bg-[#08002E] text-white flex flex-col;
  4. }
  5. .sidebar-title {
  6. @apply p-4 text-center font-bold text-2xl;
  7. }
  8. .contact-item {
  9. @apply flex items-center p-2;
  10. }
  11. .contact-item:hover, .contact-item.selected {
  12. @apply bg-[#3D26A3];
  13. }
  14. .contact-item.selected {
  15. @apply bg-[#2F197F];
  16. }
  17. .contact-avatar {
  18. @apply w-8 h-8 rounded-full mr-2;
  19. }
  20. .contact-name {
  21. @apply ml-auto text-sm;
  22. }
  23. /* 对话区域 */
  24. .chat-area {
  25. @apply flex-1 bg-gray-100 flex flex-col;
  26. }
  27. .chat-messages {
  28. @apply flex-1 p-4 overflow-y-auto;
  29. }
  30. .message-bubble {
  31. @apply max-w-xs p-2 my-2;
  32. }
  33. .message-bubble.me {
  34. @apply bg-purple-100 float-right rounded-l-lg rounded-br-lg;
  35. }
  36. .message-bubble.other {
  37. @apply bg-gray-200 float-left rounded-r-lg rounded-bl-lg;
  38. }
  39. /* 输入框与发送按钮 */
  40. .chat-input {
  41. @apply p-4 border-t border-gray-200 flex items-center;
  42. }
  43. .send-button {
  44. @apply bg-purple-500 text-white px-4 py-2 rounded-l-lg;
  45. }
  46. .file-upload-button {
  47. @apply bg-purple-500 text-white px-4 py-2 rounded-full ml-2 cursor-pointer;
  48. }
  49. .file-name {
  50. @apply ml-2 text-sm;
  51. }