stacker.news/styles/nav.module.css
2025-07-28 17:09:42 -05:00

21 lines
369 B
CSS

.nav {
display: flex;
flex-wrap: nowrap;
white-space: nowrap;
overflow-x: auto;
scrollbar-width: thin;
padding-bottom: 0.5rem;
margin: 1rem 0;
justify-content: flex-start;
font-size: 110%;
gap: 0 0.5rem;
}
.nav :global .nav-link {
padding-left: 0;
}
.nav :global .active {
border-bottom: 2px solid var(--bs-primary);
}