mirror of
https://github.com/hexastack/hexabot
synced 2025-06-26 18:27:28 +00:00
fix: update chat link hover color to use launcher color
This commit is contained in:
parent
4cdd619bf1
commit
269e07d94f
@ -1,10 +1,9 @@
|
|||||||
a.chatLink {
|
.sc-message--text-content a.chatLink {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
transition: color 0.2s ease;
|
transition: color 0.2s ease;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: #004499 !important;
|
color: var(--launcher-color);
|
||||||
text-decoration: underline;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
p.sc-message--text-content {
|
p.sc-message--text-content {
|
||||||
|
@ -51,6 +51,7 @@ const TextMessage: React.FC<TextMessageProps> = ({ message }) => {
|
|||||||
style={{
|
style={{
|
||||||
color: colors.text,
|
color: colors.text,
|
||||||
backgroundColor: colors.bg,
|
backgroundColor: colors.bg,
|
||||||
|
["--launcher-color" as string]: allColors.launcher.bg,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<p className="sc-message--text-content" ref={messageTextRef}>
|
<p className="sc-message--text-content" ref={messageTextRef}>
|
||||||
|
Loading…
Reference in New Issue
Block a user