Created
October 10, 2022 00:30
-
-
Save luislobo14rap/9a98dfc0cca1889a8aa0e84fc960bdc9 to your computer and use it in GitHub Desktop.
mixin-bs4-width-classes.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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