@true-engineering/true-react-common-ui-kit 3.0.0-alpha.7 → 3.0.0-alpha.8

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": "@true-engineering/true-react-common-ui-kit",
3
- "version": "3.0.0-alpha.7",
3
+ "version": "3.0.0-alpha.8",
4
4
  "description": "True Engineering React UI Kit with theming support",
5
5
  "author": "True Engineering (https://trueengineering.ru)",
6
6
  "keywords": [
@@ -102,10 +102,13 @@ export const searchInputStyles: ISearchInputStyles = {
102
102
  export const checkboxStyles: ICheckboxStyles = {
103
103
  root: {
104
104
  padding: [11, 16],
105
+ boxSizing: 'border-box',
106
+ width: '100%',
105
107
  },
106
108
 
107
109
  children: {
108
110
  marginRight: 'auto',
111
+ overflow: 'hidden',
109
112
  },
110
113
  };
111
114