-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
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
navbar uses media queries with hard coded width instead of bootstrap's variables @screen-* #352
Comments
the problem is that this theme doesn't compile along with the bootstrap source. it overrides the theme, so it has no access to the bootstrap variables. |
I see. maybe best way to co-exist is to provide these @screen-* variables with default values and if bootstrap is imported or other less file of the application overrides it will take the latest value?
|
closing in lieu of #727, which aims at reuse/import of basic bootstrap variables |
…s, and solved #352 with media query variables
…s, and solved #352 with media query variables
…s, and solved #352 with media query variables
for example in _navbar.less it uses
@media (max-width: 767px)
and@media (max-width: 1199px)
which can easily be replaced with@screen-sm
and@screen-lg
respectively...this will allow changing to custom app values.
thanks!
The text was updated successfully, but these errors were encountered: