@eturnity/eturnity_reusable_components 8.13.9 → 8.13.11
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
@@ -74,7 +74,7 @@
|
|
74
74
|
? props.theme.mainButton[props.appTheme][props.type][props.variant]
|
75
75
|
.disabled.textColor
|
76
76
|
: props.customColor
|
77
|
-
? props.theme.colors.
|
77
|
+
? props.theme.colors.white
|
78
78
|
: props.theme.mainButton[props.appTheme][props.type][props.variant]
|
79
79
|
.default.textColor};
|
80
80
|
background-color: ${(props) =>
|
@@ -219,7 +219,7 @@
|
|
219
219
|
|
220
220
|
.input-placeholder {
|
221
221
|
height: 25px;
|
222
|
-
|
222
|
+
margin-left: -2px;
|
223
223
|
}
|
224
224
|
`
|
225
225
|
|
@@ -396,7 +396,7 @@
|
|
396
396
|
const inputContainerAttrs = { hasMessage: Boolean }
|
397
397
|
const InputContainer = styled('div', inputContainerAttrs)`
|
398
398
|
margin-left: ${(props) => (props.hasMessage ? '10px' : '0')};
|
399
|
-
display:
|
399
|
+
display: block;
|
400
400
|
align-items: center;
|
401
401
|
justify-content: flex-start;
|
402
402
|
|