Last active
May 7, 2019 13:28
-
-
Save Kepro/73fc1c3fcd3846125df51c5a699e0a3f to your computer and use it in GitHub Desktop.
Bootstrap 4 extended sizes classes
This file contains hidden or 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
.w-150px { | |
max-width: 150px; | |
} | |
.w-200px { | |
max-width: 200px; | |
} | |
.w-250px { | |
max-width: 250px; | |
} | |
.w-300px { | |
max-width: 300px; | |
} | |
/* @include media-breakpoint-up(lg) */ | |
@media (min-width: 992px) { | |
.w-lg-150px { | |
max-width: 150px; | |
} | |
.w-lg-200px { | |
max-width: 200px; | |
} | |
.w-lg-250px { | |
max-width: 250px; | |
} | |
.w-lg-300px { | |
max-width: 300px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment