Skip to content

Commit

Permalink
feat: add word-wrap: anywhere support (#912)
Browse files Browse the repository at this point in the history
  • Loading branch information
nspector authored Oct 2, 2024
1 parent a0f0c64 commit 678b6ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/atomizer/src/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -4428,6 +4428,7 @@ module.exports = [
},
arguments: [
{
a: 'anywhere',
bw: 'break-word',
n: 'normal',
},
Expand Down
5 changes: 4 additions & 1 deletion packages/atomizer/tests/__snapshots__/rules.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -10027,7 +10027,10 @@ exports[`Rules word-break 1`] = `
`;

exports[`Rules word-wrap 1`] = `
".Wow\\(bw\\) {
".Wow\\(a\\) {
word-wrap: anywhere;
}
.Wow\\(bw\\) {
word-wrap: break-word;
}
.Wow\\(n\\) {
Expand Down

0 comments on commit 678b6ca

Please sign in to comment.