ngx-tabset
Version:
A very simple library to let you create some tabs
19 lines (18 loc) • 627 B
CSS
.nav-tabset:not(.disable-style) {
list-style: none;
padding: 0;
display: flex;
align-items: center; }
.nav-tabset:not(.disable-style) .nav-tab {
padding: 10px;
border-bottom: solid 1px transparent;
transition: border 200ms ease-out; }
.nav-tabset:not(.disable-style) .nav-tab > .tab-subtitle {
display: block;
font-size: .7rem; }
.nav-tabset:not(.disable-style) .nav-tab.active {
border-color: red; }
.nav-tabset:not(.disable-style) .nav-tab.disabled {
opacity: 0.5; }
.nav-tabset:not(.disable-style) .nav-tab:not(.active):not(.disabled) {
cursor: pointer; }