Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Created October 10, 2022 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luislobo14rap/9a98dfc0cca1889a8aa0e84fc960bdc9 to your computer and use it in GitHub Desktop.
Save luislobo14rap/9a98dfc0cca1889a8aa0e84fc960bdc9 to your computer and use it in GitHub Desktop.
mixin-bs4-width-classes.scss
/* mixin-bs4-width-classes.scss v1.0.1 */
$widths:
1
2
3
;
$bs4GridExtended:
576px
768px
992px
1200px
1367px
1681px
;
@each $width in $widths{
.w-#{$width}{
width: $width + #{'\%'} !important;
}
}
@each $grid in $bs4GridExtended{
@media all and (min-width:#{$grid}){
@each $width in $widths{
.w-#{$width}{
width: $width + #{'\%'} !important;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment