Skip to content

Commit

Permalink
Update ha-assist-chat.ts (#23790)
Browse files Browse the repository at this point in the history
Co-authored-by: Wendelin <[email protected]>
  • Loading branch information
dhoeben and wendevlin authored Jan 20, 2025
1 parent 2f5fd6f commit fc29002
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/ha-assist-chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ export class HaAssistChat extends LitElement {
float: var(--float-end);
text-align: right;
border-bottom-right-radius: 0px;
background-color: var(--primary-color);
background-color: var(--chat-background-color-user, var(--primary-color));
color: var(--text-primary-color);
direction: var(--direction);
}
Expand All @@ -543,7 +543,10 @@ export class HaAssistChat extends LitElement {
margin-inline-start: initial;
float: var(--float-start);
border-bottom-left-radius: 0px;
background-color: var(--secondary-background-color);
background-color: var(
--chat-background-color-hass,
var(--secondary-background-color)
);
color: var(--primary-text-color);
direction: var(--direction);
Expand Down

0 comments on commit fc29002

Please sign in to comment.