Skip to content

Commit 00709d2

Browse files
Merge pull request #6961 from christianbeeznest/fixes-updates156
Chat: Use theme --color-primary-base for global chat FAB
2 parents 3cc4334 + 5e6b4f7 commit 00709d2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

assets/css/scss/_chat.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
33
position: fixed; right: 16px; bottom: 88px; z-index: 1100;
44
width: 52px; height: 52px; border-radius: 9999px; border: none;
55
display: flex; align-items: center; justify-content: center;
6-
background: #4F46E5; color: #fff; cursor: pointer;
6+
background: rgb(var(--color-primary-base, 79 70 229));
7+
color: white;
8+
cursor: pointer;
79
box-shadow: 0 10px 18px rgba(0,0,0,.20), 0 2px 6px rgba(0,0,0,.12);
810
overflow: visible;
911
isolation: isolate;
10-
&:hover { background: #4338CA; }
12+
&:hover {
13+
filter: brightness(0.93);
14+
}
1115
}
1216
.chd-badge {
1317
position: absolute; top: -6px; right: -6px;

0 commit comments

Comments
 (0)