summaryrefslogtreecommitdiffstats
path: root/src/objects/_emoji.scss
blob: f7715e1a129547a861a5dd6fd83478062d8a94c7 (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('emoji') {
    @include iro.props-store((
        --dims: (
            --size:     1.4em,
            --pad:      .3em,
            --rounding: 3px,
            --zoom:     2,

            --125: (
                --size: 1.8em,
            )
        )
    ), 'dims');

    @include iro.props-store((
        --colors: (
            --bg: fn.global-color(--obj-hi),
        )
    ), 'colors');

    @include iro.bem-object(iro.props-namespace()) {
        display:        inline-block;
        height:         fn.dim(--size);
        margin:         calc(-.5 * fn.dim(--size)) calc(-1 * fn.dim(--pad));
        padding:        fn.dim(--pad);
        vertical-align: .1em;

        @include iro.bem-modifier('125') {
            height:        fn.dim(--125 --size);
            margin-top:    calc(-.5 * fn.dim(--125 --size));
            margin-bottom: calc(-.5 * fn.dim(--125 --size));
        }

        @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);
            }
        }
    }
}