create-rue 0.0.11 → 0.0.15
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/bundle.js +4 -19
- package/package.json +3 -3
- package/template/base/app/pages/Home.tsx +14 -7
- package/template/base/app/pages/Report.tsx +10 -6
- package/template/base/app/pages/TodoApp.tsx +568 -189
- package/template/base/app/pages/components/Layout.tsx +79 -24
- package/template/base/package-lock.json +617 -432
- package/template/base/package.json +19 -17
- package/template/base/pnpm-lock.yaml +550 -480
- package/template/base/style.css +10 -2
- package/template/base/tsconfig.json +1 -2
package/template/base/style.css
CHANGED
|
@@ -16,8 +16,16 @@
|
|
|
16
16
|
body {
|
|
17
17
|
@apply bg-base-200 text-base-content antialiased;
|
|
18
18
|
background-image:
|
|
19
|
-
radial-gradient(
|
|
20
|
-
|
|
19
|
+
radial-gradient(
|
|
20
|
+
circle at top,
|
|
21
|
+
color-mix(in oklch, var(--color-primary) 14%, transparent),
|
|
22
|
+
transparent 28%
|
|
23
|
+
),
|
|
24
|
+
radial-gradient(
|
|
25
|
+
circle at bottom right,
|
|
26
|
+
color-mix(in oklch, var(--color-accent) 10%, transparent),
|
|
27
|
+
transparent 24%
|
|
28
|
+
);
|
|
21
29
|
}
|
|
22
30
|
|
|
23
31
|
* {
|