@chainplatform/layout 0.2.0 → 0.2.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 +1 -1
- package/src/Landing.js +1 -8
package/package.json
CHANGED
package/src/Landing.js
CHANGED
|
@@ -108,14 +108,7 @@ export function getScreenLanding(layoutWidth, isDesktop) {
|
|
|
108
108
|
numberChart = 4;
|
|
109
109
|
}
|
|
110
110
|
const padding = (numberChart + 1) * setSize(15);
|
|
111
|
-
|
|
112
|
-
let packageWidth = (layoutWidth - padding - sideBarWidth) / numberChart;
|
|
113
|
-
if (packageWidth < setSize(280)) {
|
|
114
|
-
packageWidth = setSize(280);
|
|
115
|
-
}
|
|
116
|
-
if (packageWidth > setSize(375)) {
|
|
117
|
-
packageWidth = setSize(375);
|
|
118
|
-
}
|
|
111
|
+
let packageWidth = setSize(280);
|
|
119
112
|
|
|
120
113
|
let numberwebinarChart = 1;
|
|
121
114
|
let webinarPadding = setSize(0);
|