23 lines
336 B
CSS
23 lines
336 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);
|
|
}
|
|
|
|
.alert {
|
|
color: var(--bs-danger);
|
|
margin-bottom: 10px;
|
|
}
|