_chat.scss 560 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .chat {
  2. }
  3. .chat-bubbles {
  4. display: flex;
  5. flex-direction: column;
  6. gap: 1rem;
  7. }
  8. .chat-bubble {
  9. background: var(--#{$prefix}bg-surface-secondary);
  10. border-radius: var(--#{$prefix}border-radius-lg);
  11. padding: 1rem;
  12. position: relative;
  13. }
  14. .chat-bubble-me {
  15. background-color: var(--#{$prefix}primary-lt);
  16. box-shadow: none;
  17. }
  18. .chat-bubble-title {
  19. margin-bottom: 0.25rem;
  20. }
  21. .chat-bubble-author {
  22. font-weight: 600;
  23. }
  24. .chat-bubble-date {
  25. color: var(--#{$prefix}secondary);
  26. }
  27. .chat-bubble-body {
  28. > *:last-child {
  29. margin-bottom: 0;
  30. }
  31. }