@ansiversa/components 0.0.74 → 0.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.74",
3
+ "version": "0.0.76",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -644,6 +644,14 @@
644
644
  @apply lg:grid-cols-2;
645
645
  }
646
646
 
647
+ .av-col-4--3 {
648
+ @apply lg:grid-cols-3;
649
+ }
650
+
651
+ .av-app-card-title {
652
+ font-size: clamp(1.2rem, 1.6vw, 1.5rem);
653
+ }
654
+
647
655
  .av-list {
648
656
  @apply space-y-2 text-sm text-slate-300;
649
657
  }
@@ -1771,6 +1779,22 @@
1771
1779
  .av-m-0 {
1772
1780
  margin: 0;
1773
1781
  }
1782
+
1783
+ /* Generic spacing/type utilities (Apps page cleanup) */
1784
+ .av-mt-8 { margin-top: 2rem; }
1785
+ .av-mt-3 { margin-top: 0.75rem; }
1786
+ .av-mt-2 { margin-top: 0.5rem; }
1787
+
1788
+ .av-ml-2 { margin-left: 0.5rem; }
1789
+
1790
+ .av-block { display: block; }
1791
+
1792
+ /* label spacing used under search inputs */
1793
+ .av-mb-label { margin-bottom: 0.35rem; }
1794
+
1795
+ /* slightly smaller soft text (keeps existing feel) */
1796
+ .av-text-sm-soft { font-size: 0.9rem; }
1797
+ .av-font-normal { font-weight: 400; }
1774
1798
  .av-shadow-soft { box-shadow: var(--av-shadow-soft); }
1775
1799
  .av-shadow-glow { box-shadow: var(--av-shadow-glow); }
1776
1800