“LOOP SCSS” Respostas de código

LOOP SCSS

@for $i from 1 through 6 {
    .grid-#{$i} {
        width: 100px*$i;
    }
}
Lively Leopard

loops scss

@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
    background-color: lighten($base-color, $i * 5%);
  }
}
Blue Beaver

Loops de Sass

$base-color: #036;

@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
    background-color: lighten($base-color, $i * 5%);
  }
}




Difficult Dormouse

LOOP SCSS

@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
   color: blue;
  }
}
Code Cat

Loop SCSS

@each $theme-name, $theme-color in $colors-theme-bo {
  .theme-#{$theme-name} {
    color: $theme-color;
  }
}
Lively Leopard

Respostas semelhantes a “LOOP SCSS”

Perguntas semelhantes a “LOOP SCSS”

Procure respostas de código populares por idioma

Procurar outros idiomas de código