Skip to content

Commit

Permalink
fix quote background and border
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Sep 3, 2020
1 parent 71169a5 commit b5f31a4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions stylesheets/_quote.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
flex-direction: row;
align-items: stretch;
overflow: hidden;

border-radius: 4px;
border-left-width: 4px;
border-left-style: solid;

@include themify($themes) {
border-color: themed('accent');
border-color: themed('accentButton');
}

&__primary__type-label {
Expand Down Expand Up @@ -64,7 +64,16 @@

// This is related to the quote logic inside messages
.module-quote {
&--incoming {
@include themify($themes) {
background: themed('sentMessageBackground');
}
}

&--outgoing {
@include themify($themes) {
background: themed('receivedMessageBackground');
}
.module-quote__primary__author {
@include themify($themes) {
color: themed('sentMessageText');
Expand Down

0 comments on commit b5f31a4

Please sign in to comment.