aboutsummaryrefslogtreecommitdiff
path: root/src/components/Util/SearchBar.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Util/SearchBar.scss')
-rw-r--r--src/components/Util/SearchBar.scss28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/Util/SearchBar.scss b/src/components/Util/SearchBar.scss
new file mode 100644
index 0000000..d08f1ac
--- /dev/null
+++ b/src/components/Util/SearchBar.scss
@@ -0,0 +1,28 @@
+@import "../../styles/theme";
+
+.searchBar input {
+ width: 12rem;
+}
+
+.searchResults {
+ margin-top: $fontSize1;
+ width: 12rem;
+ height: 10rem;
+ background-color: $background3;
+ overflow-x: hidden;
+ overflow-y: auto;
+ border: 1px solid $border2;
+}
+
+.searchResult {
+ color: $defFG;
+}
+
+.searchResults .dataItem {
+ width: 100%;
+ height: 50px;
+ display: flex;
+ align-items: center;
+ color: black;
+}
+