Skip to content
Snippets Groups Projects
hy-desktop-menu-links.scss 856 B
Newer Older
  • Learn to ignore specific revisions
  • :host {
      display: block;
    }
    
    .hy-site-header {
      &__menu-desktop {
        align-items: center;
        display: flex;
        flex-flow: row;
        width: 100%;
    
        .desktop-menu-link {
          color: var(--brand-main-nearly-black);
          cursor: pointer;
          font-family: var(--main-font-family);
    
          @include breakpoint($medium) {
            @include font-size(14px, 14px);
            @include font-weight($bold);
            border-top: 0 none;
            padding: 10px 15px;
            text-transform: uppercase;
          }
    
          @include breakpoint($extrawide) {
            @include font-size(15px, 16px);
            padding: 10px 8px;
          }
    
          @include breakpoint($overwide) {
            @include font-size(18px, 16px);
            padding: 10px;
          }
    
          &--is-active {
            background-color: var(--grayscale-background-box);
            padding: 52px 10px;
          }
        }
      }
    }