This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-23 10:26:02 +02:00

43 lines
748 B
SCSS

//
// Tabs
//
.nav-tabs {
.nav-link {
border-color: transparent;
border-width: 0 0 $nav-tabs-link-active-border-width 0;
font-weight: 500;
color: $headings-color;
}
.nav-link.active,
.nav-item.show .nav-link {
border-color: $nav-tabs-link-active-border-color;
border-bottom-width: $nav-tabs-link-active-border-width;
}
}
.nav-tabs-icons {
.nav-link > span {
display: block;
color: $link-color;
font-size: rem(42px);
margin: 0 0 20px;
}
}
//
// Tabbable tabs
//
.tab-content {
padding: $tabs-padding-y $tabs-padding-x;
> .tab-pane > *:last-child {
margin-bottom: 0;
}
}