@eturnity/eturnity_reusable_components 1.2.82 → 1.2.83
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
@@ -176,7 +176,7 @@ const SelectButtonWrapperAttrs = {
|
|
176
176
|
disabled: Boolean
|
177
177
|
}
|
178
178
|
const SelectButtonWrapper = styled('div', SelectButtonWrapperAttrs)`
|
179
|
-
${(props) => (props.disabled ? 'cursor: not-allowed' : '')};
|
179
|
+
${(props) => (props.disabled ? 'cursor: not-allowed' : 'cursor: pointer')};
|
180
180
|
`
|
181
181
|
|
182
182
|
const selectButtonAttrs = {
|
@@ -192,7 +192,8 @@ const selectButton = styled('div', selectButtonAttrs)`
|
|
192
192
|
position: relative;
|
193
193
|
box-sizing: border-box;
|
194
194
|
border-radius: 4px;
|
195
|
-
padding: ${(props) =>
|
195
|
+
padding: ${(props) =>
|
196
|
+
props.isSearchBarVisible ? '0 10px 0 0' : '0px 10px 0 15px'};
|
196
197
|
text-align: left;
|
197
198
|
border-radius: 4px;
|
198
199
|
min-height: 36px;
|