summaryrefslogtreecommitdiffstats
path: root/src/objects/_bubble.scss
blob: d91b6d150bbba3c2fbd8025cd506c7fad91f3337 (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
@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: 0,

            --75: (
                --pad-x: fn.global-dim(--size --150),
                --pad-y: fn.global-dim(--size --85),
            ),
        )
    ), 'dims');

    @include iro.props-store((
        --colors: (
            --highlight: fn.global-color(--fg-lo),
        ),
    ), 'colors');

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

        @include iro.bem-modifier('highlight') {
            box-shadow: -3px 0 0 0 fn.color(--highlight);
        }
        
        @include iro.bem-elem('suffix') {
            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);
        }
    }
}