From cc5329a5f4d3ea91cac93bc7f9b8f943b7ced226 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Wed, 22 Jul 2026 12:27:09 +0200 Subject: Paths --- src/objects/_status-indicator.vars.scss | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) (limited to 'src/objects/_status-indicator.vars.scss') diff --git a/src/objects/_status-indicator.vars.scss b/src/objects/_status-indicator.vars.scss index dfe628f..66a11e8 100644 --- a/src/objects/_status-indicator.vars.scss +++ b/src/objects/_status-indicator.vars.scss @@ -1,26 +1,32 @@ -@use 'sass:map'; -@use 'pkg:iro-sass/src/props'; -@use '../config'; -@use '../core.vars' as core; +@use "sass:map"; +@use "pkg:iro-sass/props"; +@use "../config"; +@use "../core.vars" as core; $size: props.def(--o-status-indicator--size, props.get(core.$size--125)) !default; -$default: props.def(--o-status-indicator--default, props.get(core.$theme, --border-strong), 'color') !default; -$primary: props.def(--o-status-indicator--primary, props.get(core.$theme, --text), 'color') !default; +$default: props.def( + --o-status-indicator--default, + props.get(core.$theme, --border-strong), + "color" +) !default; +$primary: props.def( + --o-status-indicator--primary, + props.get(core.$theme, --text), + "color" +) !default; $themes-config: ( - accent: --accent, + accent: --accent, positive: --positive, negative: --negative, - warning: --warning, + warning: --warning, ) !default; -$themes: props.def(--o-status-indicator, (), 'color'); +$themes: props.def(--o-status-indicator, (), "color"); @each $theme, $key in $themes-config { @if $theme != --base { - $themes: props.merge($themes, ( - --#{$theme}: props.get(core.$theme, $key, --700), - )); + $themes: props.merge($themes, (--#{$theme}: props.get(core.$theme, $key, --700))); } } -- cgit v1.3.1