Open Chat Button: Fix text color on button hover (#6859)

This commit is contained in:
Alexander Zinchuk 2026-04-17 13:38:05 +02:00
parent 5eda3f5946
commit df5c8292ed

View File

@ -340,6 +340,19 @@
.open-chat-button {
color: var(--color-primary);
@media (hover: hover) {
&:hover {
color: var(--color-white);
}
}
@media (max-width: 600px) {
&:active,
&:focus {
color: var(--color-white);
}
}
}
.mask-image-disabled &::before {