UNPKG

585 BSCSSView Raw
1.str-chat__message-replies-count-button {
2 display: block;
3 border: none;
4 background: none;
5 padding: 0;
6 margin-top: var(--xs-m);
7 font-size: var(--sm-font);
8 line-height: 15px;
9 font-weight: var(--font-weight-bold);
10 color: var(--primary-color);
11 cursor: pointer;
12
13 svg {
14 fill: var(--grey-whisper);
15 margin-right: var(--xxs-m);
16 }
17}
18
19.dark.str-chat {
20 .str-chat__message-replies-count-button {
21 svg {
22 fill: var(--white10);
23 }
24 }
25
26 &.team {
27 .str-chat__message-replies-count-button {
28 svg {
29 fill: var(--black40);
30 }
31 }
32 }
33}