summaryrefslogtreecommitdiffstats
path: root/src_demo/components
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2024-06-21 23:07:50 +0200
committerVolpeon <git@volpeon.ink>2024-06-21 23:07:50 +0200
commit48cb00040763459fc46d4aa108bf72c12f48f422 (patch)
tree9609470d56bb31d55697ef0c42f1c908804dd3f1 /src_demo/components
parentUpdate (diff)
downloadiro-design-48cb00040763459fc46d4aa108bf72c12f48f422.tar.gz
iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.tar.bz2
iro-design-48cb00040763459fc46d4aa108bf72c12f48f422.zip
WIP: Refactoring
Diffstat (limited to 'src_demo/components')
-rw-r--r--src_demo/components/_box.scss10
1 files changed, 5 insertions, 5 deletions
diff --git a/src_demo/components/_box.scss b/src_demo/components/_box.scss
index e983f2c..21d61c0 100644
--- a/src_demo/components/_box.scss
+++ b/src_demo/components/_box.scss
@@ -4,13 +4,13 @@
4@include iro.props-namespace('box') { 4@include iro.props-namespace('box') {
5 @include iro.props-store(( 5 @include iro.props-store((
6 --colors: ( 6 --colors: (
7 --border: fn.global-color(--obj), 7 --border: fn.global-color(--border),
8 ), 8 ),
9 ), 'colors'); 9 ));
10 10
11 @include iro.bem-component(iro.props-namespace()) { 11 @include iro.bem-component(iro.props-namespace()) {
12 margin: 2em 0; 12 margin-block: 2em;
13 padding: 2em; 13 padding: 2em;
14 border: 1px solid fn.color(--border); 14 border: 1px solid fn.color(--border);
15 } 15 }
16} 16}