v6.1.2 (21 juin 2017)

This commit is contained in:
Raphael Goetter 2017-06-21 10:50:33 +02:00
parent 679a936f5b
commit 689c3d32f7
14 changed files with 54 additions and 39 deletions

View file

@ -24,7 +24,7 @@
}
// hyphens on tiny screens
@media (max-width: $tiny) {
@media (max-width: ($small - 1)) {
/* you shall not pass */
div,
textarea,
@ -40,7 +40,7 @@
}
// use .no-wrapping to disallow hyphens on tiny screens
@media (max-width: $tiny) {
@media (max-width: ($small - 1)) {
.no-wrapping {
word-wrap: normal;
hyphens: manual;

View file

@ -14,6 +14,10 @@ kbd {
border: 1px solid #999;
}
pre {
tab-size: 2;
}
code {
padding: 2px 4px;
background: rgba(0, 0, 0, 0.04);