mirror of
https://github.com/adoyle0/thaw.git
synced 2025-03-12 13:42:55 -04:00
21 lines
571 B
CSS
21 lines
571 B
CSS
.melt-menu-item__content {
|
|
margin: 0.3rem 0.4rem;
|
|
padding: 0.5rem 0.75rem;
|
|
color: var(--font-color);
|
|
cursor: pointer;
|
|
border-radius: 0.25rem;
|
|
font-size: 0.875rem;
|
|
|
|
transition-property: color, background-color;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 0.15s;
|
|
}
|
|
|
|
.melt-menu-item__content:hover:not(.melt-menu-item__content--selected) {
|
|
background-color: var(--bg-color-hover);
|
|
}
|
|
|
|
.melt-menu-item__content--selected {
|
|
color: var(--font-color-active);
|
|
background-color: var(--bg-color);
|
|
}
|