@ansiversa/components 0.0.81 → 0.0.82

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -386,14 +386,6 @@
386
386
  .av-hide-sm {
387
387
  display: none !important;
388
388
  }
389
-
390
- /* .av-navbar-actions {
391
- padding-right: 0.5rem;
392
- }
393
-
394
- .av-navbar-actions .av-btn-primary {
395
- margin-right: 0.5rem;
396
- } */
397
389
  }
398
390
 
399
391
  /* Admin list page (generic) ------------------------------------------ */
@@ -758,9 +750,63 @@
758
750
  @apply grid gap-5 md:gap-6 md:grid-cols-3;
759
751
  }
760
752
 
761
- .av-section-grid--2 {
762
- @apply md:grid-cols-2;
763
- }
753
+ .av-section-grid--2 {
754
+ @apply md:grid-cols-2;
755
+ }
756
+
757
+ /* Home page helpers ------------------------------------ */
758
+
759
+ .av-center-narrow {
760
+ max-width: 62.5rem;
761
+ margin: 0 auto;
762
+ text-align: center;
763
+ }
764
+
765
+ .av-center-copy {
766
+ max-width: 43.75rem;
767
+ margin-left: auto;
768
+ margin-right: auto;
769
+ }
770
+
771
+ .av-grid-auto {
772
+ display: grid;
773
+ gap: 2rem;
774
+ grid-template-columns: repeat(auto-fit, minmax(var(--av-grid-min, 260px), 1fr));
775
+ }
776
+
777
+ .av-grid-auto--260 {
778
+ --av-grid-min: 260px;
779
+ }
780
+
781
+ .av-grid-auto--280 {
782
+ --av-grid-min: 280px;
783
+ }
784
+
785
+ .av-grid-auto--mt-4 {
786
+ margin-top: 1rem;
787
+ }
788
+
789
+ .av-card--fullheight {
790
+ height: 100%;
791
+ }
792
+
793
+ .av-section-lead--spaced {
794
+ margin-top: 2.5rem;
795
+ }
796
+
797
+ .av-profile-row {
798
+ display: flex;
799
+ align-items: center;
800
+ gap: 1.5rem;
801
+ }
802
+
803
+ .av-avatar-lg {
804
+ width: 90px;
805
+ height: 90px;
806
+ border-radius: var(--av-radius-full);
807
+ object-fit: cover;
808
+ flex: 0 0 auto;
809
+ }
764
810
  /* Pricing ------------------------------------------------ */
765
811
 
766
812
  .av-pricing-grid {