@orion-studios/payload-studio 0.5.0-beta.73 → 0.5.0-beta.75
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/studio-pages/builder.css +31 -0
- package/dist/studio-pages/client.js +153 -1494
- package/dist/studio-pages/client.mjs +153 -1494
- package/package.json +1 -1
|
@@ -308,6 +308,18 @@ h4 {
|
|
|
308
308
|
color: var(--orion-studio-accent);
|
|
309
309
|
}
|
|
310
310
|
|
|
311
|
+
.orion-builder-lucide-icon {
|
|
312
|
+
display: block;
|
|
313
|
+
height: 20px;
|
|
314
|
+
width: 20px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.orion-builder-lucide-icon-fallback {
|
|
318
|
+
font-size: 0.68rem;
|
|
319
|
+
font-weight: 800;
|
|
320
|
+
line-height: 1;
|
|
321
|
+
}
|
|
322
|
+
|
|
311
323
|
.section-heading {
|
|
312
324
|
display: flex;
|
|
313
325
|
justify-content: space-between;
|
|
@@ -336,6 +348,17 @@ h4 {
|
|
|
336
348
|
color: var(--orion-studio-muted);
|
|
337
349
|
}
|
|
338
350
|
|
|
351
|
+
.service-tag-icon {
|
|
352
|
+
align-items: center;
|
|
353
|
+
background: rgba(13, 74, 55, 0.1);
|
|
354
|
+
border-radius: 12px;
|
|
355
|
+
color: var(--orion-studio-accent);
|
|
356
|
+
display: inline-grid;
|
|
357
|
+
height: 44px;
|
|
358
|
+
justify-content: center;
|
|
359
|
+
width: 44px;
|
|
360
|
+
}
|
|
361
|
+
|
|
339
362
|
.split.testimonials-grid {
|
|
340
363
|
display: grid;
|
|
341
364
|
gap: 0.9rem;
|
|
@@ -930,3 +953,11 @@ h4 {
|
|
|
930
953
|
color: var(--orion-builder-heading-color, inherit);
|
|
931
954
|
text-align: var(--orion-builder-heading-align, inherit);
|
|
932
955
|
}
|
|
956
|
+
|
|
957
|
+
.orion-builder-content .features .feature-item h3 {
|
|
958
|
+
color: #ffffff;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
.orion-builder-content .features .feature-item p {
|
|
962
|
+
color: rgba(255, 255, 255, 0.88);
|
|
963
|
+
}
|