@betterstart/cli 0.1.75 → 0.1.76
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/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/init/cms-globals.css +3 -3
- package/templates/ui/card.tsx +1 -1
package/package.json
CHANGED
|
@@ -157,19 +157,19 @@
|
|
|
157
157
|
border-radius: 6px;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
@utility material-
|
|
160
|
+
@utility material-sm {
|
|
161
161
|
background-color: var(--card);
|
|
162
162
|
box-shadow: var(--shadow-border-small);
|
|
163
163
|
border-radius: 6px;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
@utility material-
|
|
166
|
+
@utility material-md {
|
|
167
167
|
background-color: var(--card);
|
|
168
168
|
box-shadow: var(--shadow-border-medium);
|
|
169
169
|
border-radius: 12px;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
@utility material-
|
|
172
|
+
@utility material-lg {
|
|
173
173
|
background-color: var(--card);
|
|
174
174
|
box-shadow: var(--shadow-border-large);
|
|
175
175
|
border-radius: 12px;
|
package/templates/ui/card.tsx
CHANGED
|
@@ -12,7 +12,7 @@ function Card({
|
|
|
12
12
|
data-slot="card"
|
|
13
13
|
data-size={size}
|
|
14
14
|
className={cn(
|
|
15
|
-
"group/card flex flex-col gap-6 overflow-hidden rounded-xl bg-card py-6 text-sm text-card-foreground has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl material-
|
|
15
|
+
"group/card flex flex-col gap-6 overflow-hidden rounded-xl bg-card py-6 text-sm text-card-foreground has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl material-md",
|
|
16
16
|
className
|
|
17
17
|
)}
|
|
18
18
|
{...props}
|