@chainplatform/layout 0.1.9 → 0.2.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Landing.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chainplatform/layout",
3
- "version": "0.1.9",
3
+ "version": "0.2.0",
4
4
  "description": "@chainplatform/layout",
5
5
  "main": "index.js",
6
6
  "devDependencies": {
package/src/Landing.js CHANGED
@@ -110,8 +110,8 @@ export function getScreenLanding(layoutWidth, isDesktop) {
110
110
  const padding = (numberChart + 1) * setSize(15);
111
111
 
112
112
  let packageWidth = (layoutWidth - padding - sideBarWidth) / numberChart;
113
- if (packageWidth < setSize(250)) {
114
- packageWidth = setSize(250);
113
+ if (packageWidth < setSize(280)) {
114
+ packageWidth = setSize(280);
115
115
  }
116
116
  if (packageWidth > setSize(375)) {
117
117
  packageWidth = setSize(375);