Files
fizzy/app/assets/stylesheets/notifications.css
T
2025-05-20 13:50:53 -05:00

35 lines
664 B
CSS

@layer components {
/* Notifications list
/* ------------------------------------------------------------------------ */
.notifications-list {
.tray__item {
position: relative;
}
&:has(.card--notification) {
.notifications-list__empty-message {
display: none;
}
}
}
/* Read items
/* ------------------------------------------------------------------------ */
.notifications-list--read {
&:not(:has(.card--notification)) {
display: none;
}
.card {
box-shadow: 0 0 0 1px var(--color-ink-lighter);
}
.card__notification-unread-indicator {
display: none;
}
}
}