@eturnity/eturnity_reusable_components 1.2.39-EPDM-5626 → 1.2.39-EPDM-5626.1
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 @@ const InputLabel = styled('div', labelAttrs)`
|
|
74
74
|
};
|
75
75
|
|
76
76
|
font-size: ${(props) => (props.fontSize ? props.fontSize : '13px')};
|
77
|
-
font-
|
77
|
+
font-family: 'Lato-Bold',Arial;
|
78
78
|
`
|
79
79
|
|
80
80
|
const LabelWrapper = styled.div`
|
@@ -133,15 +133,15 @@ const InputContainer = styled('input', inputProps)`
|
|
133
133
|
: props.fontColor
|
134
134
|
? props.fontColor + ' !important'
|
135
135
|
: props.theme.colors.black};
|
136
|
-
|
136
|
+
|
137
137
|
width: ${(props) => (props.inputWidth ? props.inputWidth : '100%')};
|
138
138
|
min-width: ${(props) => (props.minWidth ? props.minWidth : 'unset')};
|
139
139
|
max-height: ${(props) => props.inputHeight};
|
140
140
|
box-sizing: border-box; // to allow width of 100% with padding
|
141
|
-
font-weight:
|
141
|
+
font-weight: 400;
|
142
142
|
cursor: ${(props) => (props.isDisabled ? 'not-allowed' : 'auto')};
|
143
143
|
background-color: ${(props) =>
|
144
|
-
props.isDisabled ? props.theme.colors.grey5 :
|
144
|
+
props.isDisabled ? props.theme.colors.grey5 :
|
145
145
|
props.backgroundColor ? props.backgroundColor+' !important' :
|
146
146
|
props.theme.colors.white};
|
147
147
|
&::placeholder {
|