@cthacker/next-sidebar
Version:
NextJS sidebar component, supports variable amount of links + icons!
28 lines (24 loc) • 635 B
CSS
.sidebar_navlink_container {
display: flex;
flex-direction: row;
color: white;
font-size: 0.95em;
padding: 1.5em;
align-items: center;
gap: 1em;
transition: background-color 0.5s ease-in-out;
border-left: 2.5px solid transparent;
}
.sidebar_navlink_current {
background-color: rgba(255, 255, 255, 0.25);
border-left: 2.5px solid white;
pointer-events: none;
}
.sidebar_navlink_container:hover {
background-color: rgba(255, 255, 255, 0.25);
border-left: 2.5px solid white;
cursor: pointer;
}
.sidebar_navlink_content {
white-space: nowrap;
}