mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
26 lines
296 B
CSS
26 lines
296 B
CSS
.container {
|
|
display: flex;
|
|
position: relative;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.username {
|
|
border-bottom: 1px solid var(--gray500);
|
|
}
|
|
|
|
.username:hover {
|
|
background: var(--gray50);
|
|
}
|
|
|
|
.menu {
|
|
z-index: 100;
|
|
}
|
|
|
|
.open {
|
|
background: var(--gray200);
|
|
}
|
|
|
|
.open:hover {
|
|
background: var(--gray200);
|
|
}
|