Sha256: cf27d4d138b4d628f45a2e9d8f1dd013ce5c08b27a6bc15efe0c0b87a2da433e
Contents?: true
Size: 751 Bytes
Versions: 18
Compression:
Stored size: 751 Bytes
Contents
@charset "UTF-8"; .navbar { .nav-item { .nav-link { position: relative; margin-right: $spacer * .5; &::before { position: absolute; right: 0; bottom: 0; left: 0; width: 0; margin: 0 auto; content: ""; border-bottom-style: solid; border-bottom-width: 1px; transition: width .2s; } @include hover-focus { &::before { width: 100%; } } } &.active .nav-link::before { width: 100%; } } } .navbar-dark { .nav-item .nav-link::before { border-color: $navbar-dark-active-color; } } .navbar-light { .nav-item .nav-link::before { border-color: $navbar-light-active-color; } }
Version data entries
18 entries across 12 versions & 1 rubygems