Sha256: 639dcc02f7aea60259c586b1b84ceaa5d068b3011ac2ac111d9c0e40853f2bf6
Contents?: true
Size: 576 Bytes
Versions: 10
Compression:
Stored size: 576 Bytes
Contents
@charset "UTF-8"; /// Outputs the `overflow-wrap` property and its legacy name `word-wrap` to /// support browsers that do not yet use `overflow-wrap`. /// /// @argument {string} $wrap [break-word] /// Accepted CSS values are `normal`, `break-word`, `inherit`, `initial`, /// or `unset`. /// /// @example scss /// .wrapper { /// @include overflow-wrap; /// } /// /// // CSS Output /// .wrapper { /// word-wrap: break-word; /// overflow-wrap: break-word; /// } @mixin overflow-wrap($wrap: break-word) { word-wrap: $wrap; overflow-wrap: $wrap; }
Version data entries
10 entries across 10 versions & 3 rubygems