From d44fcad6d06c7e68073657992f579285319e80ba Mon Sep 17 00:00:00 2001 From: john-rock Date: Mon, 2 Oct 2023 10:26:59 -0400 Subject: [PATCH] throw in input css file --- .../components/searchInput/styles.module.css | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 website/src/components/searchInput/styles.module.css diff --git a/website/src/components/searchInput/styles.module.css b/website/src/components/searchInput/styles.module.css new file mode 100644 index 00000000000..5f846af7d3b --- /dev/null +++ b/website/src/components/searchInput/styles.module.css @@ -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; +}