We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You currently depend on a standard bootstrap.css to be compiled, with standard sizing/breakpoints/etc.
bootstrap.css
You should instead @import "~bootstrap/scss/bootstrap";. Then, you can use the pt/px sizes from bootstrap.
@import "~bootstrap/scss/bootstrap";
You can also use the mixins provided by bootstrap, such as:
@include media-breakpoint-up(sm) { // Styles }
Ideally, in any theme developed for bootstrap, you should rarely be specifying any exact pt/px/colors.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You currently depend on a standard
bootstrap.css
to be compiled, with standard sizing/breakpoints/etc.You should instead
@import "~bootstrap/scss/bootstrap";
. Then, you can use the pt/px sizes from bootstrap.You can also use the mixins provided by bootstrap, such as:
@include media-breakpoint-up(sm) { // Styles }
Ideally, in any theme developed for bootstrap, you should rarely be specifying any exact pt/px/colors.
The text was updated successfully, but these errors were encountered: