You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
314 B
17 lines
314 B
//
|
|
// Mixins: Direct Chat
|
|
//
|
|
|
|
// Direct Chat Variant
|
|
@mixin direct-chat-variant($bg-color, $color: $white) {
|
|
.right > .direct-chat-text {
|
|
background-color: $bg-color;
|
|
border-color: $bg-color;
|
|
color: color-yiq($bg-color);
|
|
|
|
&::after,
|
|
&::before {
|
|
border-left-color: $bg-color;
|
|
}
|
|
}
|
|
}
|