UNPKG

810 BSCSSView Raw
1.str-chat__date-separator {
2 display: flex;
3 padding: var(--xl-p);
4 align-items: center;
5
6 &-date {
7 font-size: var(--md-font);
8 font-weight: var(--font-weight-bold);
9 color: var(--overlay-dark);
10 font-family: var(--second-font);
11 }
12
13 &-line {
14 flex: 1;
15 background-color: var(--overlay);
16 height: 1px;
17 border: none;
18 }
19
20 > * {
21 &:not(:last-child) {
22 margin-right: var(--sm-m);
23 }
24 }
25}
26
27.commerce.str-chat {
28 .str-chat__date-separator {
29 padding: var(--xl-p) 0;
30 }
31}
32
33.dark.str-chat {
34 .str-chat__date-separator {
35 &-line {
36 background-color: var(--grey-gainsboro);
37 }
38
39 &-date {
40 color: var(--grey-whisper);
41 }
42 }
43
44 &.team {
45 .str-chat__date-separator {
46 &-line {
47 background-color: var(--overlay);
48 }
49 }
50 }
51}