@apptegy/nuxt-navigation 0.1.101 → 0.1.102
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
|
@@ -198,13 +198,13 @@ function handleDismiss(event) {
|
|
|
198
198
|
align-items: start;
|
|
199
199
|
width: 100%;
|
|
200
200
|
padding: 12px;
|
|
201
|
-
border: 1px solid
|
|
201
|
+
border: 1px solid rgb(232, 232, 236);
|
|
202
202
|
border-radius: 8px;
|
|
203
203
|
background: var(--primary-white, #fff);
|
|
204
204
|
text-align: left;
|
|
205
205
|
color: inherit;
|
|
206
206
|
box-shadow: none;
|
|
207
|
-
transition: box-shadow 0.15s ease;
|
|
207
|
+
transition: border-color 0.15s ease, box-shadow 0.15s ease;
|
|
208
208
|
}
|
|
209
209
|
.notification-item__main {
|
|
210
210
|
display: grid;
|
|
@@ -228,6 +228,7 @@ function handleDismiss(event) {
|
|
|
228
228
|
border-radius: 4px;
|
|
229
229
|
}
|
|
230
230
|
.notification-item:hover {
|
|
231
|
+
border-color: rgb(209, 209, 214);
|
|
231
232
|
box-shadow: rgba(0, 0, 0, 0.06) 0 2px 10px;
|
|
232
233
|
}
|
|
233
234
|
.notification-item__avatar {
|