From aeed08dc46662a0d70e04bcea612a701633736e7 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Wed, 22 Jul 2026 13:00:59 +0200 Subject: Revert "Paths" This reverts commit cc5329a5f4d3ea91cac93bc7f9b8f943b7ced226. --- src/objects/_status-indicator.vars.scss | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 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 66a11e8..dfe628f 100644 --- a/src/objects/_status-indicator.vars.scss +++ b/src/objects/_status-indicator.vars.scss @@ -1,32 +1,26 @@ -@use "sass:map"; -@use "pkg:iro-sass/props"; -@use "../config"; -@use "../core.vars" as core; +@use 'sass:map'; +@use 'pkg:iro-sass/src/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