23 lines
505 B
CSS
23 lines
505 B
CSS
|
|
@layer layout {
|
||
|
|
.app-topbar-notification-menu > summary {
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.app-notification-badge {
|
||
|
|
position: absolute;
|
||
|
|
top: 2px;
|
||
|
|
right: 2px;
|
||
|
|
min-width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
padding: 0 4px;
|
||
|
|
border-radius: 9px;
|
||
|
|
background: var(--app-danger, #dc3545);
|
||
|
|
color: #fff;
|
||
|
|
font-size: 11px;
|
||
|
|
font-weight: 600;
|
||
|
|
line-height: 18px;
|
||
|
|
text-align: center;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
}
|