@eturnity/eturnity_reusable_components 7.20.0--EPDM-10564.4 → 7.20.0--EPDM-10564.5
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
@@ -268,10 +268,12 @@ const selectButton = styled('div', selectButtonAttrs)`
|
|
268
268
|
props.isSearchBarVisible
|
269
269
|
? ''
|
270
270
|
: `padding-left: ${
|
271
|
-
props.
|
271
|
+
props.hasNoPadding
|
272
|
+
? '0'
|
273
|
+
: props.tablePaddingLeft
|
274
|
+
? props.tablePaddingLeft
|
275
|
+
: props.paddingLeft
|
272
276
|
}`};
|
273
|
-
${(props) =>
|
274
|
-
props.hasNoPadding ? '' : `padding-left: ${props.paddingLeft}`};
|
275
277
|
text-align: left;
|
276
278
|
min-height: ${(props) =>
|
277
279
|
props.selectHeight
|