From dd5f3c463fab336d694f426dcad11a1783590fc9 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Sat, 5 Feb 2022 07:52:13 +0100 Subject: Ported from import syntax to modules --- src/bem/_vars.scss | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/bem/_vars.scss') diff --git a/src/bem/_vars.scss b/src/bem/_vars.scss index 5942d4f..3d0f92a 100644 --- a/src/bem/_vars.scss +++ b/src/bem/_vars.scss @@ -9,21 +9,21 @@ /// /// @type string /// -$iro-bem-element-separator: '__' !default; +$element-separator: '__' !default; /// /// Separating character sequence for modifiers. /// /// @type string /// -$iro-bem-modifier-separator: '--' !default; +$modifier-separator: '--' !default; /// /// Separating character sequence for BEMIT suffixes. /// /// @type string /// -$iro-bem-suffix-separator: '\\@' !default; +$suffix-separator: '\\@' !default; /// /// Prefixes for all BEMIT namespaces. @@ -40,7 +40,7 @@ $iro-bem-suffix-separator: '\\@' !default; /// /// @type map /// -$iro-bem-namespaces: ( +$namespaces: ( object: 'o', component: 'c', layout: 'l', @@ -59,14 +59,14 @@ $iro-bem-namespaces: ( /// /// @access private /// -$iro-bem-blocks: (); +$blocks: (); /// /// Maximum nesting depth of BEM mixins. The large default value means there is no effective limit. /// /// @type number /// -$iro-bem-max-depth: 99 !default; +$max-depth: 99 !default; /// /// Indicates how nested elements should be handled. @@ -78,28 +78,28 @@ $iro-bem-max-depth: 99 !default; /// /// @type string /// -$iro-bem-element-nesting-policy: 'allow' !default; +$element-nesting-policy: 'allow' !default; /// /// Context ID used for all BEM-related mixins. /// /// @type string /// -$iro-bem-context-id: 'bem' !default; +$context-id: 'bem' !default; /// /// Debug mode. /// /// @type bool /// -$iro-bem-debug: false !default; +$debug: false !default; /// /// Colors assigned to namespaces. /// /// @type map /// -$iro-bem-debug-colors: ( +$debug-colors: ( object: #ffa500, component: #00f, layout: #ff0, -- cgit v1.2.3-54-g00ecf