ferns-ui 0.21.1 → 0.21.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/dist/Box.js CHANGED
@@ -39,7 +39,7 @@ const ALIGN_SELF = {
39
39
  around: "space-around",
40
40
  stretch: "stretch",
41
41
  };
42
- const BORDER_WIDTH = 2;
42
+ const BORDER_WIDTH = 1;
43
43
  export class Box extends React.Component {
44
44
  constructor(props) {
45
45
  super(props);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ferns-ui",
3
- "version": "0.21.1",
3
+ "version": "0.21.2",
4
4
  "main": "dist/index.js",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
package/src/Box.tsx CHANGED
@@ -41,7 +41,7 @@ const ALIGN_SELF = {
41
41
  stretch: "stretch",
42
42
  };
43
43
 
44
- const BORDER_WIDTH = 2;
44
+ const BORDER_WIDTH = 1;
45
45
 
46
46
  export class Box extends React.Component<BoxProps, {}> {
47
47
  BOX_STYLE_MAP: {