@apptegy/nuxt-navigation 0.1.99 → 0.1.101
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
|
@@ -203,7 +203,8 @@ function handleDismiss(event) {
|
|
|
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
208
|
}
|
|
208
209
|
.notification-item__main {
|
|
209
210
|
display: grid;
|
|
@@ -227,7 +228,7 @@ function handleDismiss(event) {
|
|
|
227
228
|
border-radius: 4px;
|
|
228
229
|
}
|
|
229
230
|
.notification-item:hover {
|
|
230
|
-
|
|
231
|
+
box-shadow: rgba(0, 0, 0, 0.06) 0 2px 10px;
|
|
231
232
|
}
|
|
232
233
|
.notification-item__avatar {
|
|
233
234
|
position: relative;
|
|
@@ -314,7 +314,7 @@ function scrollFilters() {
|
|
|
314
314
|
display: flex;
|
|
315
315
|
flex-direction: column;
|
|
316
316
|
width: min(480px, 100vw - 32px);
|
|
317
|
-
max-height: calc(100vh -
|
|
317
|
+
max-height: calc(100vh - 130px);
|
|
318
318
|
border: 1px solid var(--grey-20, #e5e7eb);
|
|
319
319
|
border-radius: 12px;
|
|
320
320
|
background: var(--primary-white, #fff);
|
|
@@ -434,6 +434,7 @@ function scrollFilters() {
|
|
|
434
434
|
.notifications-panel__body {
|
|
435
435
|
overflow-y: auto;
|
|
436
436
|
padding: 16px;
|
|
437
|
+
background: #f7f7f8;
|
|
437
438
|
}
|
|
438
439
|
.notifications-panel__loading, .notifications-panel__empty {
|
|
439
440
|
margin: 0;
|