Skip to content
Snippets Groups Projects
site-search.scss 448 B
Newer Older
  • Learn to ignore specific revisions
  • .button--search {
      align-items: center;
      background: transparent;
      border: 0 none;
      display: flex;
      padding: 15px;
    
      @include breakpoint($medium) {
        padding: 4px 0;
    
        &:focus {
          outline: solid 2px var(--additional-yellow);
          outline-offset: 2px;
        }
      }
    
      &.is-open--menu {
        position: absolute;
        right: 50px;
        top: 15px;
        z-index: 101;
      }
    
      &__label {
        @include font-size(14px);
        margin-left: 4px;
      }
    }