2
0

_headline.scss 616 B

12345678910111213141516171819202122232425
  1. #conversejs {
  2. .chatbox.headlines {
  3. .chat-head {
  4. &.chat-head-chatbox {
  5. background-color: $headline-head-color;
  6. }
  7. }
  8. .chat-body {
  9. background-color: $headline-head-color;
  10. border-radius: $chatbox-border-radius;
  11. .chat-message {
  12. span {
  13. &.chat-msg-them {
  14. color: $dark-orange;
  15. }
  16. }
  17. }
  18. }
  19. .chat-content {
  20. height: 100%;
  21. border-radius: $chatbox-border-radius;
  22. }
  23. }
  24. }