// Fix subpixel rounding for tabs when zooming
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-bottom-width: 1.5px;
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width) - 0.5px);
}

bs-tabs {
    position: relative;
    display: flex;
    // It needs all available space to compute width
    flex-grow: 1;

    // Align to the end of line
    &[end] {
        justify-content: flex-end;
    }

    // Style applied when nav is collapsed to a dropdown menu
    &.bs-tabs-dropdown {
        .nav-link.active {
            @include caret();
            // min-width: calc(var(--min-width) + 20px);
        }

        .nav-link:not(.active) {
            display: none;
        }
    }
}