General normalization on LESS files

This commit is contained in:
Raphael Goetter 2014-05-07 10:45:47 +02:00
parent 5e1e4f9eb5
commit 01633e9d9e
14 changed files with 741 additions and 196 deletions

View file

@ -27,9 +27,16 @@
& when (@enable-hyphens = true) {
@media (max-width: @small-screen) {
/* you shall not pass */
div, textarea, table, td, th, code, pre, samp {
div,
textarea,
table,
td,
th,
code,
pre,
samp {
word-wrap: break-word;
hyphens: auto;
}
}
}
}