create-vite-taro 0.5.13 → 0.5.14
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
|
@@ -152,11 +152,11 @@ function IndexPage() {
|
|
|
152
152
|
</Text>
|
|
153
153
|
</View>
|
|
154
154
|
|
|
155
|
-
<View className="mt-8
|
|
155
|
+
<View className="mt-8 flex flex-row flex-wrap gap-4">
|
|
156
156
|
{featureCards.map((feature) => (
|
|
157
157
|
<View
|
|
158
158
|
key={feature.number}
|
|
159
|
-
className={`flex min-h-52 flex-col rounded-3xl border border-[#1e663d]/15 bg-white/80 p-6 shadow-lg ${feature.tiltClass}`}
|
|
159
|
+
className={`flex min-h-52 min-w-64 flex-1 flex-col rounded-3xl border border-[#1e663d]/15 bg-white/80 p-6 shadow-lg ${feature.tiltClass}`}
|
|
160
160
|
>
|
|
161
161
|
<View className="brand-serif flex h-11 w-11 items-center justify-center rounded-2xl bg-[#e3f4df] text-base font-bold text-[#197342]">
|
|
162
162
|
{feature.number}
|