blob: f1d053fdbe2c7fddba4afc72d60a76d3ba3dca6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;
@include iro.props-namespace('bubble') {
@include iro.props-store((
--dims: (
--pad-x: fn.global-dim(--size --200),
--pad-y: fn.global-dim(--size --150),
--rounding: 3px,
--arrow-size: fn.global-dim(--size --100),
--75: (
--pad-x: fn.global-dim(--size --150),
--pad-y: fn.global-dim(--size --85),
),
)
), 'dims');
@include iro.bem-object(iro.props-namespace()) {
position: relative;
padding: fn.dim(--pad-y) fn.dim(--pad-x);
border-radius: fn.dim(--rounding);
background-color: fn.global-color(--bg);
color: fn.global-color(--fg);
&::before {
content: '';
display: none;
position: absolute;
top: 0;
left: calc(-1 * fn.dim(--arrow-size));
border: fn.dim(--arrow-size) solid fn.global-color(--bg);
border-bottom-color: transparent;
border-left-color: transparent;
}
@include iro.bem-elem('time') {
margin-left: 1em;
float: right;
transform: translate(.2em, .2em);
}
@include iro.bem-modifier('75') {
padding: fn.dim(--75 --pad-y) fn.dim(--75 --pad-x);
}
}
}
|