@ansiversa/components 0.0.75 → 0.0.77
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 +1 -1
- package/src/AvNavbarActions.astro +1 -1
- package/src/styles/global.css +14 -0
package/package.json
CHANGED
|
@@ -101,7 +101,7 @@ const userInitial =
|
|
|
101
101
|
<AvButton
|
|
102
102
|
href={item.href}
|
|
103
103
|
variant="ghost"
|
|
104
|
-
className=
|
|
104
|
+
className={`av-nowrap${item.label === "Pricing" ? " av-hide-sm" : ""}`}
|
|
105
105
|
>
|
|
106
106
|
<span class="av-nav-icon" set:html={renderIcon(item.label)}></span>
|
|
107
107
|
<span class="av-nav-label">{item.label}</span>
|
package/src/styles/global.css
CHANGED
|
@@ -382,6 +382,12 @@
|
|
|
382
382
|
}
|
|
383
383
|
}
|
|
384
384
|
|
|
385
|
+
@media (max-width: 420px) {
|
|
386
|
+
.av-hide-sm {
|
|
387
|
+
display: none !important;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
385
391
|
/* Admin list page (generic) ------------------------------------------ */
|
|
386
392
|
.av-admin-header {
|
|
387
393
|
display: grid;
|
|
@@ -644,6 +650,14 @@
|
|
|
644
650
|
@apply lg:grid-cols-2;
|
|
645
651
|
}
|
|
646
652
|
|
|
653
|
+
.av-col-4--3 {
|
|
654
|
+
@apply lg:grid-cols-3;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.av-app-card-title {
|
|
658
|
+
font-size: clamp(1.2rem, 1.6vw, 1.5rem);
|
|
659
|
+
}
|
|
660
|
+
|
|
647
661
|
.av-list {
|
|
648
662
|
@apply space-y-2 text-sm text-slate-300;
|
|
649
663
|
}
|