Commit 5ffb6d67 authored by Synchro's avatar Synchro
Browse files

Add .hyphens mixin

parent aaabe2a4
Showing with 9 additions and 0 deletions
+9 -0
...@@ -312,6 +312,15 @@ ...@@ -312,6 +312,15 @@
column-gap: @columnGap; column-gap: @columnGap;
} }
// Optional hyphenation
.hyphens(@mode: auto) {
-webkit-hyphens: @mode;
-moz-hyphens: @mode;
-ms-hyphens: @mode;
hyphens: @mode;
word-wrap:break-word;
}
// Opacity // Opacity
.opacity(@opacity) { .opacity(@opacity) {
opacity: @opacity / 100; opacity: @opacity / 100;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment