@ansiversa/components 0.0.96 → 0.0.98
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 +4 -0
- package/src/styles/global.css +11 -0
package/package.json
CHANGED
|
@@ -154,6 +154,10 @@ const userInitial =
|
|
|
154
154
|
<span>Dashboard</span>
|
|
155
155
|
</a>
|
|
156
156
|
|
|
157
|
+
<a href={`${ROOT_URL}/notifications`} class="av-user-menu-item av-dropdown-item" role="menuitem">
|
|
158
|
+
<span>Notifications</span>
|
|
159
|
+
</a>
|
|
160
|
+
|
|
157
161
|
<a href={`${ROOT_URL}/favorites`} class="av-user-menu-item av-dropdown-item" role="menuitem">
|
|
158
162
|
<span>Favorites</span>
|
|
159
163
|
</a>
|
package/src/styles/global.css
CHANGED
|
@@ -532,6 +532,17 @@
|
|
|
532
532
|
font-size: 0.875rem;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
+
.av-admin-json {
|
|
536
|
+
background: #0f172a;
|
|
537
|
+
color: #e2e8f0;
|
|
538
|
+
padding: 1rem;
|
|
539
|
+
border-radius: 0.75rem;
|
|
540
|
+
overflow: auto;
|
|
541
|
+
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
|
|
542
|
+
font-size: 0.875rem;
|
|
543
|
+
line-height: 1.5;
|
|
544
|
+
}
|
|
545
|
+
|
|
535
546
|
.av-admin-section > .av-container {
|
|
536
547
|
padding-top: 0;
|
|
537
548
|
padding-bottom: 0;
|