@apptegy/nuxt-navigation 0.1.116 → 0.1.117
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/dist/module.json
CHANGED
|
@@ -76,11 +76,21 @@
|
|
|
76
76
|
:aria-label="$t('navigation.notificationsPanel.dismiss')"
|
|
77
77
|
@click="handleDismiss"
|
|
78
78
|
>
|
|
79
|
-
<
|
|
80
|
-
|
|
81
|
-
|
|
79
|
+
<svg
|
|
80
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
81
|
+
width="16"
|
|
82
|
+
height="16"
|
|
83
|
+
viewBox="0 0 24 24"
|
|
84
|
+
fill="none"
|
|
85
|
+
stroke="currentColor"
|
|
86
|
+
stroke-width="2"
|
|
87
|
+
stroke-linecap="round"
|
|
88
|
+
stroke-linejoin="round"
|
|
82
89
|
aria-hidden="true"
|
|
83
|
-
|
|
90
|
+
>
|
|
91
|
+
<path d="M18 6 6 18" />
|
|
92
|
+
<path d="m6 6 12 12" />
|
|
93
|
+
</svg>
|
|
84
94
|
</Button>
|
|
85
95
|
</div>
|
|
86
96
|
</div>
|
|
@@ -317,4 +327,8 @@ function handleDismiss(event) {
|
|
|
317
327
|
padding: 0;
|
|
318
328
|
color: var(--grey-50, #9ca3af);
|
|
319
329
|
}
|
|
330
|
+
.notification-item__dismiss :deep(svg) {
|
|
331
|
+
display: block;
|
|
332
|
+
flex-shrink: 0;
|
|
333
|
+
}
|
|
320
334
|
</style>
|