21 lines
369 B
CSS
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);
|
|
}
|