@taiga-ui/styles 3.5.0 → 3.6.0

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.
Files changed (2) hide show
  1. package/basic/main.less +13 -6
  2. package/package.json +1 -1
package/basic/main.less CHANGED
@@ -5,7 +5,6 @@ html {
5
5
  }
6
6
 
7
7
  body {
8
- .text-basic();
9
8
  height: 100%;
10
9
  min-height: 100%;
11
10
  text-rendering: optimizeLegibility;
@@ -55,11 +54,6 @@ svg use {
55
54
  pointer-events: none;
56
55
  }
57
56
 
58
- html,
59
- .tui-zero-scrollbar {
60
- .scrollbar-hidden();
61
- }
62
-
63
57
  ::selection {
64
58
  background-color: var(--tui-selection);
65
59
  }
@@ -71,3 +65,16 @@ html,
71
65
  ::-ms-reveal {
72
66
  display: none;
73
67
  }
68
+
69
+ // @note: only safari 16+
70
+ @supports (-webkit-hyphens: none) and (text-align-last: right) {
71
+ /**
72
+ * @descriptions:
73
+ * Safari 16 has bug when for some reason,
74
+ * the ::after blocks aren't removed
75
+ * after the destruction of the parent class
76
+ */
77
+ :after {
78
+ content: none;
79
+ }
80
+ }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@taiga-ui/styles",
3
- "version": "3.5.0",
3
+ "version": "3.6.0",
4
4
  "description": "Global Styles for Taiga UI"
5
5
  }