@eturnity/eturnity_reusable_components 1.1.54 → 1.1.55
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,6 +192,11 @@ const ComponentItem = styled.td`
|
|
|
192
192
|
background-clip: content-box;
|
|
193
193
|
padding: 8px 0 7px 0 !important;
|
|
194
194
|
|
|
195
|
+
@supports (-webkit-appearance: none) {
|
|
196
|
+
/* Safari Only CSS here */
|
|
197
|
+
padding: 8px 0 10px 0 !important;
|
|
198
|
+
}
|
|
199
|
+
|
|
195
200
|
span {
|
|
196
201
|
padding-left: 15px;
|
|
197
202
|
}
|
|
@@ -225,6 +230,11 @@ const ArrowContainer = styled.td`
|
|
|
225
230
|
padding: 8px 0 7px 0 !important;
|
|
226
231
|
border-radius: 0 4px 4px 0;
|
|
227
232
|
|
|
233
|
+
@supports (-webkit-appearance: none) {
|
|
234
|
+
/* Safari Only CSS here */
|
|
235
|
+
padding: 8px 0 10px 0 !important;
|
|
236
|
+
}
|
|
237
|
+
|
|
228
238
|
.arrow-dropdown {
|
|
229
239
|
vertical-align: middle;
|
|
230
240
|
margin-left: 11px;
|