Skip to content

Instantly share code, notes, and snippets.

@lucaspmarra
Created December 20, 2023 19:26
Show Gist options
  • Select an option

  • Save lucaspmarra/a6d6921769f081f42b660f1aa622c4d1 to your computer and use it in GitHub Desktop.

Select an option

Save lucaspmarra/a6d6921769f081f42b660f1aa622c4d1 to your computer and use it in GitHub Desktop.
style
.menu {
max-width: 250px;
min-width: 250px;
gap: 12px;
background-color: transparent;
}
.menu-item {
font-weight: bold;
color: black;
}
.menu-item-inactive:hover {
background-color: #eee;
color: black;
cursor: pointer;
}
.menu-item-selected {
margin-left: -20px;
padding-left: 20px;
height: 80px;
background: rgba(254, 161, 57, 0.24);
border-radius: 16px;
display: flex;
align-items: center;
color: var(--background-primary-color);
font-size: 16px;
font-weight: 700;
line-height: 18px;
cursor: pointer !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment