fix bot message styling in dark mode

This commit is contained in:
Sharon Kennedy 2020-02-23 20:16:28 -05:00
parent 066824cb3b
commit 37455346f3

View File

@ -23,14 +23,16 @@
}
.message {
.text {
border: 1px solid $light-text-color;
&.from-bot {
color: transparentize($light-text-color, 0.3);
font-size: 0.9rem;
}
&.from-me {
.text {
background-color: $light-background-color;
color: $dark-text-color;
border: 1px solid $light-text-color;
}
}
@ -38,6 +40,7 @@
.text {
background-color: $dark-theme-color;
color: $light-text-color;
border: 1px solid $light-text-color;
}
}
}