@transferwise/neptune-css 14.3.39 → 14.3.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@transferwise/neptune-css",
3
3
  "description": "Neptune CSS library",
4
- "version": "14.3.39",
4
+ "version": "14.3.40",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -53,5 +53,5 @@
53
53
  "bin": {
54
54
  "neptune-css-upgrade-util": "scripts/neptune-css-upgrader.js"
55
55
  },
56
- "gitHead": "7c85c96a61f28d15ef62848f79e7021379591345"
56
+ "gitHead": "ef5b0fa8421e62930ebf25851e40636e2fc4844c"
57
57
  }
@@ -288,15 +288,27 @@ strong,
288
288
  letter-spacing: normal;
289
289
  font-weight: @font-weight;
290
290
 
291
- @supports (hyphenate-limit-chars: 7) {
291
+ @supports (hyphenate-limit-chars: 1) {
292
292
  hyphens: auto;
293
- hyphenate-limit-chars: 7;
293
+ hyphenate-limit-chars: 7 3;
294
+
295
+ @media (--screen-md) {
296
+ hyphenate-limit-chars: 8 3;
297
+ }
298
+
299
+ @media (--screen-lg) {
300
+ hyphenate-limit-chars: 10 4 3;
301
+ }
294
302
  }
295
303
 
296
- @supports (-webkit-hyphenate-limit-before: 3) and (not (hyphenate-limit-chars: 7)) {
304
+ @supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
297
305
  hyphens: auto;
298
306
  -webkit-hyphenate-limit-before: 3;
299
307
  -webkit-hyphenate-limit-after: 3;
308
+
309
+ @media (--screen-lg) {
310
+ -webkit-hyphenate-limit-before: 4;
311
+ }
300
312
  }
301
313
  }
302
314