Skip to content

Commit

Permalink
fix(chat): add styles for links in bubbles
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Sep 11, 2021
1 parent 924b52c commit 31e22b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/default/scss/chat/_layout.scss
Expand Up @@ -142,6 +142,11 @@
border-style: solid;
line-height: $chat-bubble-line-height;
word-wrap: break-word;

a {
color: inherit;
text-decoration: underline;
}
}


Expand Down
3 changes: 3 additions & 0 deletions packages/default/scss/chat/_theme.scss
Expand Up @@ -31,6 +31,9 @@
@include box-shadow( $chat-bubble-shadow );
transition: $transition;
order: -1;

a { color: $link-text; }
a:hover { color: $link-hover-text; }
}
.k-bubble:hover {
@include box-shadow( $chat-bubble-hover-shadow );
Expand Down

0 comments on commit 31e22b3

Please sign in to comment.