_headline.scss 456 B

1234567891011121314151617181920
  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. color: $dark-orange;
  13. }
  14. }
  15. .chat-content {
  16. height: 100%;
  17. }
  18. }
  19. }