aboutsummaryrefslogtreecommitdiff
path: root/src/components/Util/SearchBar.scss
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-08 19:23:18 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-08 19:23:18 +0530
commit97d32bb98dd669d6ef934036cbf8d4278de0b481 (patch)
tree9a618b759920fdd8e70a9a6dc5708fbf1c36ad41 /src/components/Util/SearchBar.scss
parent04ef09bba76f8ce3572120c19a3070c45a4af86c (diff)
somehow created a search bar
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;
+}
+