@ansiversa/components 0.0.76 → 0.0.78
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 +10 -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,16 @@
|
|
|
382
382
|
}
|
|
383
383
|
}
|
|
384
384
|
|
|
385
|
+
@media (max-width: 420px) {
|
|
386
|
+
.av-hide-sm {
|
|
387
|
+
display: none !important;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.av-navbar-actions {
|
|
391
|
+
padding-right: 0.5rem;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
385
395
|
/* Admin list page (generic) ------------------------------------------ */
|
|
386
396
|
.av-admin-header {
|
|
387
397
|
display: grid;
|