I am trying to implement responsive text using media queries in bootstrap 3.
Sample "mystyles.less" media queries for less:
@media (min-width: @screen-sm-min) {
@font-size-base:10px;
}
@media (min-width: @screen-md-min) {
@font-size-base:12px;
}
@media (min-width: @screen-lg-min) {
@font-size-base:14px;
}
now when i add "mystyles.less" to "bootstrap.less" like this:
.
.
.
@import "variables.less";
@import "responsive-fontsize.less";
.
.
.
now nothing is happening, font sizes are not responsive. Any idea about problem ?