blob: 0f878c340f2906cbf06f2db808e0c9092359d71c (
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
|
@use 'iro-sass/src/index' as iro;
@use '../functions' as fn;
@include iro.props-namespace('emoji') {
@include iro.props-store((
--dims: (
--size: 1.4em,
--pad: .2em,
--rounding: 3px,
--zoom: 2,
)
), 'dims');
@include iro.props-store((
--colors: (
--bg: fn.global-color(--obj-hi),
)
), 'colors');
@include iro.bem-object(iro.props-namespace()) {
display: inline;
width: fn.dim(--size);
height: fn.dim(--size);
margin: calc(-.5 * fn.dim(--size)) calc(-1 * fn.dim(--pad));
padding: fn.dim(--pad);
vertical-align: .2em;
@include iro.bem-modifier('zoomable') {
transition: transform .2s ease, background-color .2s ease;
border-radius: calc(fn.dim(--rounding) / fn.dim(--zoom));
&:hover {
transform: scale(fn.dim(--zoom));
background-color: fn.color(--bg);
}
}
}
}
|