mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 14:59:41 +02:00
16 lines
252 B
CSS
16 lines
252 B
CSS
.menu-icon {
|
|
background: var(--user-menu-icon-color);
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.menu-icon::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 10px;
|
|
width: 6px;
|
|
height: 6px;
|
|
background: red;
|
|
border-radius: 50%;
|
|
}
|