Skip to content

Instantly share code, notes, and snippets.

@Kepro
Last active May 7, 2019 13:28
Show Gist options
  • Save Kepro/73fc1c3fcd3846125df51c5a699e0a3f to your computer and use it in GitHub Desktop.
Save Kepro/73fc1c3fcd3846125df51c5a699e0a3f to your computer and use it in GitHub Desktop.
Bootstrap 4 extended sizes classes
.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