Skip to content
Snippets Groups Projects
Select Git revision
  • bf68d851f905581f735b4bfe72d2664dfc033ae0
  • master default protected
  • minion
  • development
4 results

SearchBar.module.scss

Blame
  • SearchBar.module.scss 466 B
    .searchBar {
      display: flex;
      width: 300px;
      border-radius: 25px;
      background-color: #d0d3e4;
      padding: 6px;
      text-align: center;
      transition: width 1s;
      &:hover {
        width: 500px;
        background-color: white;
      }
      .searchInput {
        background-color: transparent;
        border: transparent;
    
        &:focus {
          outline: none;
        }
      }
      .icon {
        padding-left: 5px;
        padding-top: 5px;
        padding-right: 5px;
        width: 22px;
        height: 22px;
      }
    }