github.com/emate/nomad@v0.8.2-wo-binpacking/ui/app/styles/core/menu.scss (about) 1 .menu { 2 .menu-list { 3 a { 4 font-weight: $weight-semibold; 5 padding: 0.5rem 1.5rem; 6 border-radius: 0; 7 box-shadow: inset 0 0 0 $grey-blue; 8 transition: box-shadow 0.1s ease-in-out; 9 text-decoration: none; 10 11 &:hover, 12 &.is-active { 13 background: transparent; 14 box-shadow: inset -3px 0 0 $blue; 15 color: $blue; 16 } 17 } 18 19 .menu-item { 20 margin: 0.5rem 1.5rem; 21 } 22 } 23 24 .menu-label { 25 margin: 1rem 0.75rem 0.5rem; 26 padding-top: 0.5rem; 27 color: darken($grey-blue, 20%); 28 letter-spacing: 0; 29 30 &:first-child { 31 margin-top: 0; 32 padding-top: 1rem; 33 } 34 35 &:not(:first-child) { 36 border-top: 1px solid $grey-blue; 37 } 38 } 39 }