@eturnity/eturnity_reusable_components 1.1.55 → 1.1.56
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
|
@@ -192,9 +192,11 @@ const ComponentItem = styled.td`
|
|
|
192
192
|
background-clip: content-box;
|
|
193
193
|
padding: 8px 0 7px 0 !important;
|
|
194
194
|
|
|
195
|
-
@
|
|
196
|
-
|
|
197
|
-
|
|
195
|
+
@media not all and (min-resolution: 0.001dpcm) {
|
|
196
|
+
@supports (-webkit-appearance: none) {
|
|
197
|
+
/* Safari Only CSS here */
|
|
198
|
+
padding: 8px 0 10px 0 !important;
|
|
199
|
+
}
|
|
198
200
|
}
|
|
199
201
|
|
|
200
202
|
span {
|
|
@@ -230,9 +232,11 @@ const ArrowContainer = styled.td`
|
|
|
230
232
|
padding: 8px 0 7px 0 !important;
|
|
231
233
|
border-radius: 0 4px 4px 0;
|
|
232
234
|
|
|
233
|
-
@
|
|
234
|
-
|
|
235
|
-
|
|
235
|
+
@media not all and (min-resolution: 0.001dpcm) {
|
|
236
|
+
@supports (-webkit-appearance: none) {
|
|
237
|
+
/* Safari Only CSS here */
|
|
238
|
+
padding: 8px 0 10px 0 !important;
|
|
239
|
+
}
|
|
236
240
|
}
|
|
237
241
|
|
|
238
242
|
.arrow-dropdown {
|