Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created May 24, 2018 15:48
Show Gist options
  • Select an option

  • Save NickDeckerDevs/e810e46a7d4448c0aa3dce736625e327 to your computer and use it in GitHub Desktop.

Select an option

Save NickDeckerDevs/e810e46a7d4448c0aa3dce736625e327 to your computer and use it in GitHub Desktop.
Sass Loop using nth of type
&.client-logo-gallery {
@include breakpoint(maxdesktop) {
@for $i from 10 through 20 {
.et_pb_gallery_item:nth-of-type(#{$i}) {
display: none!important
}
}
}
@include breakpoint(phone) {
@for $i from 7 through 20 {
.et_pb_gallery_item:nth-of-type(#{$i}) {
display: none!important;
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment