| 1234567891011121314151617 | //// Mixins: Direct Chat//// Direct Chat Variant@mixin direct-chat-variant($bg-color, $color: $white) {  .right > .direct-chat-text {    background: $bg-color;    border-color: $bg-color;    color: color-yiq($bg-color);    &::after,    &::before {      border-left-color: $bg-color;    }  }}
 |