Files
edx-platform/common/static/sass/bourbon/addons/_word-wrap.scss
2014-06-11 21:19:26 -04:00

9 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;
}
}