I need to print my CV but the old trick
isn\'t working anymore s
In my project I issued the same problem. Since I've got a app.less
file in which I import the bootstrap.less
source, I did the following:
@import "my_path/bootstrap.less";
@media print{
.make-grid(sm);
}
Which is actually what it's done in Bootstrap's grid.less
file
Maybe it's not the cleaner solution, but it's 3-code-lines away ;)