1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 01:39:50 +02:00

fix(badge): rename is-splited to is-split

This commit is contained in:
ldd
2020-05-27 09:42:13 -04:00
parent 7cb4a1dda8
commit c0b925ee4a
3 changed files with 7 additions and 7 deletions

View File

@@ -27,7 +27,7 @@
@mixin badge-style($color, $background, $option: is-default) {
$box-shadow-first-two: 0 0.5em $background, 0 -0.5em $background;
@if $option == is-splited {
@if $option == is-split {
&:first-child {
@include span-style($color, $background, left);
@@ -85,9 +85,9 @@
"error" $background-color map-get($error-colors, "normal");
@each $type in $types {
&.is-splited {
&.is-split {
& span.is-#{nth($type, 1)} {
@include badge-style(nth($type, 2), nth($type, 3), is-splited);
@include badge-style(nth($type, 2), nth($type, 3), is-split);
}
}