@taiga-ui/core 2.63.0 → 2.65.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.
@@ -71,3 +71,16 @@ html,
71
71
  ::-ms-reveal {
72
72
  display: none;
73
73
  }
74
+
75
+ // @note: only safari 16+
76
+ @supports (-webkit-hyphens: none) and (text-align-last: right) {
77
+ /**
78
+ * @descriptions:
79
+ * Safari 16 has bug when for some reason,
80
+ * the ::after blocks aren't removed
81
+ * after the destruction of the parent class
82
+ */
83
+ :after {
84
+ content: none;
85
+ }
86
+ }