summaryrefslogtreecommitdiffstats
path: root/src/_flexible-button-group.scss
blob: daa9d45e04b8bca2bd7422c2ff43bf6444b5810d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@use 'iro-sass/src/props';

@use 'core';

@mixin styles {
    .flexibleButtonGroup {
        > li {
            > a,
            > label {
                background-color: props.get(core.$theme, --base, --300);
                color: props.get(core.$theme, --base, --300-text);
            }
        }
    }
}