Skip to content

Commit

Permalink
throw in input css file
Browse files Browse the repository at this point in the history
  • Loading branch information
john-rock committed Oct 2, 2023
1 parent 61690ad commit d44fcad
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions website/src/components/searchInput/styles.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.inputContainer {
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: default;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
min-height: 38px;
outline: 0 !important;
position: relative;
-webkit-transition: all 100ms;
transition: all 100ms;
background-color: hsl(0, 0%, 100%);
border-color: hsl(0, 0%, 80%);
border-radius: 4px;
border-style: solid;
border-width: 1px;
box-sizing: border-box;
cursor: text;
}

0 comments on commit d44fcad

Please sign in to comment.