diff options
Diffstat (limited to 'src/objects/_button.scss')
-rw-r--r-- | src/objects/_button.scss | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/objects/_button.scss b/src/objects/_button.scss index 5da1fbd..3932575 100644 --- a/src/objects/_button.scss +++ b/src/objects/_button.scss | |||
@@ -55,7 +55,7 @@ | |||
55 | --accent: ( | 55 | --accent: ( |
56 | --bg: iro.props-get(--colors --accent --primary, $global: true), | 56 | --bg: iro.props-get(--colors --accent --primary, $global: true), |
57 | --label: iro.props-get(--colors --accent --primary-fg, $global: true), | 57 | --label: iro.props-get(--colors --accent --primary-fg, $global: true), |
58 | --outline-label: iro.props-get(--colors --accent --primary-lo2, $global: true), | 58 | --outline-label: iro.props-get(--colors --accent --primary-lo, $global: true), |
59 | --shadow: 0 0 0 0 transparent, | 59 | --shadow: 0 0 0 0 transparent, |
60 | 60 | ||
61 | --hover: ( | 61 | --hover: ( |
@@ -130,12 +130,9 @@ | |||
130 | 130 | ||
131 | @include button-variant('secondary'); | 131 | @include button-variant('secondary'); |
132 | 132 | ||
133 | @each $mod in ('accent' 'primary' 'secondary') { | 133 | @each $mod in ('accent' 'primary') { |
134 | @if $mod != 'secondary' { | 134 | @include iro.bem-modifier($mod) { |
135 | @include iro.bem-modifier($mod) { | 135 | @include button-variant($mod); |
136 | // sass-lint:disable-block function-name-format | ||
137 | @include button-variant($mod); | ||
138 | } | ||
139 | } | 136 | } |
140 | } | 137 | } |
141 | 138 | ||