UNPKG

787 BSCSSView Raw
1.str-chat__tooltip {
2 display: flex;
3 background: var(--black);
4 border-radius: var(--border-radius-sm);
5 padding: var(--xxs-p) var(--xs-p);
6 color: var(--white);
7 font-size: var(--xs-font);
8 max-width: 300px;
9
10 button {
11 outline: none;
12 outline: 0;
13 background: none;
14 color: var(--primary-color);
15 font-size: var(--xs-font);
16 font-family: var(--second-font);
17 border: none;
18 }
19
20 a {
21 color: var(--primary-color);
22 text-decoration: none;
23 }
24}
25
26.str-chat__tooltip:not(.str-chat__tooltip-angular) {
27 position: absolute;
28 right: 0;
29 bottom: calc(100% + 10px);
30
31 &::after {
32 content: '';
33 position: absolute;
34 bottom: -2px;
35 right: 5px;
36 width: 5px;
37 height: 5px;
38 background: var(--black);
39 transform: rotate(45deg);
40 }
41}