@import '../style/variable'; @import '../style/mixin'; $height: 40px; .container { .nav-bar { @include absolute(100%, $height); @include overflow-auto(x); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); z-index: 100; background: var(--darker-background); font-size: 0; white-space: nowrap; .nav-bar-item { cursor: pointer; display: inline-block; height: $height - 2; line-height: $height - 2; padding: 0 10px; color: var(--foreground); font-size: $font-size-s; text-align: center; text-transform: capitalize; transition: all $anim-duration; &:active { background: var(--highlight); color: var(--select-foreground); } &.active { background: var(--highlight); color: var(--select-foreground); } } .bottom-bar { transition: left $anim-duration, width $anim-duration; height: 3px; background: var(--accent); position: absolute; bottom: 0; left: 0; } } }