@chainplatform/layout 0.1.8 → 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.
- package/README.md +25 -1
- package/image-1.png +0 -0
- package/image-2.png +0 -0
- package/image.png +0 -0
- package/package.json +1 -1
- package/src/Landing.js +2 -2
package/README.md
CHANGED
|
@@ -54,4 +54,28 @@ class App extends React.Component {
|
|
|
54
54
|
);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
```
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## 🪪 License
|
|
62
|
+
MIT © 2025 [Chain Platform](https://chainplatform.net)
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## 💖 Support & Donate
|
|
67
|
+
|
|
68
|
+
If you find this package helpful, consider supporting the development:
|
|
69
|
+
|
|
70
|
+
| Cryptocurrency | Address |
|
|
71
|
+
|----------------|----------|
|
|
72
|
+
| **Bitcoin (BTC)** | `17grbSNSEcEybS1nHh4TGYVodBwT16cWtc` |
|
|
73
|
+

|
|
74
|
+
| **Ethereum (ETH)** | `0xa2fd119a619908d53928e5848b49bf1cc15689d4` |
|
|
75
|
+

|
|
76
|
+
| **Tron (TRX)** | `TYL8p2PLCLDfq3CgGBp58WdUvvg9zsJ8pd` |
|
|
77
|
+

|
|
78
|
+
| **DOGE (DOGE)** | `DDfKN2ys4frNaUkvPKcAdfL6SiVss5Bm19` |
|
|
79
|
+
| **USDT (SOLANA)** | `cPUZsb7T9tMfiZFqXbWbRvrUktxgZQXQ2Ni1HiVXgFm` |
|
|
80
|
+
|
|
81
|
+
Your contribution helps maintain open-source development under the Chain Platform ecosystem 🚀
|
package/image-1.png
ADDED
|
Binary file
|
package/image-2.png
ADDED
|
Binary file
|
package/image.png
ADDED
|
Binary file
|
package/package.json
CHANGED
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(
|
|
114
|
-
packageWidth = setSize(
|
|
113
|
+
if (packageWidth < setSize(280)) {
|
|
114
|
+
packageWidth = setSize(280);
|
|
115
115
|
}
|
|
116
116
|
if (packageWidth > setSize(375)) {
|
|
117
117
|
packageWidth = setSize(375);
|