Sha256: a91ec88b49cbdd8e7155ff26626b841b490fb73d9204d59c3c4220d733e8289d
Contents?: true
Size: 1.18 KB
Versions: 22
Compression:
Stored size: 1.18 KB
Contents
/** * MUI Tabs module */ .mui-tabs__bar { list-style: none; padding-left: 0; margin-bottom: 0; background-color: transparent; white-space: nowrap; overflow-x: auto; > li { display: inline-block; > a { display: block; white-space: nowrap; text-transform: uppercase; font-weight: 500; font-size: 14px; color: $mui-tab-font-color; cursor: default; height: 48px; line-height: 48px; padding-left: 24px; padding-right: 24px; user-select: none; &:hover { text-decoration: none; } } &.mui--is-active { border-bottom: 2px solid $mui-tab-border-color-active; > a { @if $mui-tab-font-color-active == null { color: $mui-tab-font-color; } @else { color: $mui-tab-font-color-active; } } } } &.mui-tabs__bar--justified { display: table; width: 100%; table-layout: fixed; > li { display: table-cell; > a { text-align: center; padding-left: 0px; padding-right: 0px; } } } } .mui-tabs__pane { display: none; &.mui--is-active { display: block; } }
Version data entries
22 entries across 22 versions & 1 rubygems