Skip to content

Commit

Permalink
Fix indicator for new chat message when chat is hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgoetze committed Dec 12, 2021
1 parent 2f53936 commit bdcff6f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/components/Party.vue
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,23 @@ export default {
}
&--alert {
background-color: red;
background-color: $action-2;
outline: none;
opacity: 1;
box-shadow: 1px 1px 3px #555;
> * {
fill: $white;
filter: grayscale(0);
}
&:hover, &:focus {
background-color: $white;
> * {
fill: $action-2;
}
}
}
&--switch-language > * {
Expand Down

0 comments on commit bdcff6f

Please sign in to comment.