18 lines
316 B
SCSS
18 lines
316 B
SCSS
|
.notification-badge {
|
||
|
min-width: 18px;
|
||
|
padding: 1px var(--sp-ultra-tight);
|
||
|
background-color: var(--tc-surface-low);
|
||
|
border-radius: 9px;
|
||
|
|
||
|
.text {
|
||
|
color: var(--bg-surface-low);
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
&--alert {
|
||
|
background-color: var(--bg-positive);
|
||
|
.text {
|
||
|
color: white;
|
||
|
}
|
||
|
}
|
||
|
}
|