diff options
author | Volpeon <git@volpeon.ink> | 2025-03-28 16:07:29 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2025-03-28 16:07:29 +0100 |
commit | c29639657dd52c63c6dd5b39ec331d64cee80189 (patch) | |
tree | a45db543c873e8b46c42e5213c5b0b4986a79370 /src/_flexible-button-group.scss | |
parent | New variable organizing (diff) | |
download | furbase-design-2024-c29639657dd52c63c6dd5b39ec331d64cee80189.tar.gz furbase-design-2024-c29639657dd52c63c6dd5b39ec331d64cee80189.tar.bz2 furbase-design-2024-c29639657dd52c63c6dd5b39ec331d64cee80189.zip |
Bugfixes
Diffstat (limited to 'src/_flexible-button-group.scss')
-rw-r--r-- | src/_flexible-button-group.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/_flexible-button-group.scss b/src/_flexible-button-group.scss new file mode 100644 index 0000000..daa9d45 --- /dev/null +++ b/src/_flexible-button-group.scss | |||
@@ -0,0 +1,15 @@ | |||
1 | @use 'iro-sass/src/props'; | ||
2 | |||
3 | @use 'core'; | ||
4 | |||
5 | @mixin styles { | ||
6 | .flexibleButtonGroup { | ||
7 | > li { | ||
8 | > a, | ||
9 | > label { | ||
10 | background-color: props.get(core.$theme, --base, --300); | ||
11 | color: props.get(core.$theme, --base, --300-text); | ||
12 | } | ||
13 | } | ||
14 | } | ||
15 | } | ||