mirror of
https://github.com/google/pebble.git
synced 2025-03-15 08:41:21 +00:00
8 lines
151 B
SCSS
8 lines
151 B
SCSS
@mixin word-wrap($wrap: break-word) {
|
|
word-wrap: $wrap;
|
|
|
|
@if $wrap == break-word {
|
|
overflow-wrap: break-word;
|
|
word-break: break-all;
|
|
}
|
|
}
|