github.com/nozzle/golangci-lint@v1.49.0-nz3/docs/src/components/SearchBar/styles.css (about)

     1  /**
     2   * Copyright (c) Facebook, Inc. and its affiliates.
     3   *
     4   * This source code is licensed under the MIT license found in the
     5   * LICENSE file in the root directory of this source tree.
     6   */
     7  
     8  .search-icon {
     9    background-image: var(--ifm-navbar-search-input-icon);
    10    height: auto;
    11    width: 24px;
    12    cursor: pointer;
    13    padding: 8px;
    14    line-height: 32px;
    15    background-repeat: no-repeat;
    16    background-position: center;
    17    display: none;
    18  }
    19  
    20  .search-icon-hidden {
    21    visibility: hidden;
    22  }
    23  
    24  @media (max-width: 360px) {
    25    .search-bar {
    26      width: 0 !important;
    27      background: none !important;
    28      padding: 0 !important;
    29      transition: none !important;
    30    }
    31  
    32    .search-bar-expanded {
    33      width: 9rem !important;
    34    }
    35  
    36    .search-icon {
    37      display: inline;
    38      vertical-align: sub;
    39    }
    40  }