Files
web/components/MyPages/Sidebar/sidebar.module.css
2024-04-16 09:24:31 +02:00

22 lines
342 B
CSS

.sidebar {
align-self: flex-start;
display: none;
position: sticky;
/* Based on header and breadcrumbs height, and gap */
top: 14.6rem;
}
.nav {
align-items: flex-start;
display: flex;
flex-direction: column;
gap: 2rem;
padding-left: 4rem;
}
@media screen and (min-width: 950px) {
.sidebar {
display: block;
}
}