We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6e957d commit 47ce7f4Copy full SHA for 47ce7f4
1 file changed
src/styles/styles.scss
@@ -83,8 +83,19 @@ svg {
83
84
// "New since last open" indicator — primary-colored bar on the inline-start edge
85
&.notification--new {
86
- box-shadow: inset 3px 0 0 var(--color-primary-element);
87
- background: color-mix(in srgb, var(--color-primary-element) 5%, transparent);
+ position: relative;
+ background-color: color-mix(in srgb, var(--color-primary-element) 16%, transparent) !important;
88
+
89
+ &::before {
90
+ content: '';
91
+ position: absolute;
92
+ inset-block: calc(var(--default-grid-baseline, 4px) * 2);
93
+ inset-inline-start: 0;
94
+ width: 3px;
95
+ background-color: var(--color-primary-element);
96
+ border-radius: 999px;
97
+ animation: nc-nav-stripe-in var(--animation-quick, 200ms) ease-out;
98
+ }
99
}
100
101
.notification-heading {
0 commit comments