18 lines
270 B
CSS
18 lines
270 B
CSS
|
.nav {
|
||
|
margin: 1rem 0;
|
||
|
justify-content: start;
|
||
|
font-size: 110%;
|
||
|
}
|
||
|
|
||
|
.nav :global .nav-link {
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
.nav :global .nav-item:not(:first-child) {
|
||
|
margin-left: 1rem;
|
||
|
}
|
||
|
|
||
|
.nav :global .active {
|
||
|
border-bottom: 2px solid var(--bs-primary);
|
||
|
}
|