@eturnity/eturnity_reusable_components 1.2.39-EPDM-5626 → 1.2.39-EPDM-5626.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.2.39-EPDM-5626",
3
+ "version": "1.2.39-EPDM-5626.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -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-weight: 700;
77
+ font-family: 'Lato-Bold', Arial;
78
78
  `
79
79
 
80
80
  const LabelWrapper = styled.div`
@@ -138,7 +138,7 @@ const InputContainer = styled('input', inputProps)`
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: 500;
141
+ font-weight: 400;
142
142
  cursor: ${(props) => (props.isDisabled ? 'not-allowed' : 'auto')};
143
143
  background-color: ${(props) =>
144
144
  props.isDisabled ? props.theme.colors.grey5 :