@mixin menu-horizontal {

  > li {

    float: left;

    &:not( :last-child ) {
      margin-right: 10px;
    }

  }

}

@mixin menu-vertical {

  > li {

    margin-bottom: $line-height-computed;

  }

}