Horje
loop scss Code Example
loop scss
@for $i from 1 through 6 {
    .grid-#{$i} {
        width: 100px*$i;
    }
}
loops scss
@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
    background-color: lighten($base-color, $i * 5%);
  }
}
sass loops
$base-color: #036;

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




loop scss
@for $i from 1 through 3 {
  ul:nth-child(3n + #{$i}) {
   color: blue;
  }
}
scss loop
@each $theme-name, $theme-color in $colors-theme-bo {
  .theme-#{$theme-name} {
    color: $theme-color;
  }
}




Css

Related
remove botton styles Code Example remove botton styles Code Example
how do i update my gatsby version? Code Example how do i update my gatsby version? Code Example
remove styles button Code Example remove styles button Code Example
reset submit btn style Code Example reset submit btn style Code Example
button style none Code Example button style none Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
18