github.com/bosssauce/ponzu@v0.11.1-0.20200102001432-9bc41b703131/system/admin/static/editor/sass/components/_tabs.scss (about) 1 .tabs { 2 position: relative; 3 height: 48px; 4 background-color: $tabs-bg-color; 5 margin: 0 auto; 6 width: 100%; 7 white-space: nowrap; 8 9 .tab { 10 display: block; 11 float: left; 12 text-align: center; 13 line-height: 48px; 14 height: 48px; 15 padding: 0 20px; 16 margin: 0; 17 text-transform: uppercase; 18 letter-spacing: .8px; 19 width: 15%; 20 21 a { 22 color: $tabs-text-color; 23 display: block; 24 width: 100%; 25 height: 100%; 26 @include transition( color .28s ease); 27 &:hover { 28 color: lighten($tabs-text-color, 20%); 29 } 30 } 31 32 &.disabled a { 33 color: lighten($tabs-text-color, 20%); 34 cursor: default; 35 } 36 } 37 .indicator { 38 position: absolute; 39 bottom: 0; 40 height: 2px; 41 background-color: $tabs-underline-color; 42 will-change: left, right; 43 } 44 } 45 46 .tabs .tab { padding: 0; } 47