From 1ed6ed08b095901fafe9439a6fc8fa13d80c8904 Mon Sep 17 00:00:00 2001
From: Jonas_Jones <91549607+J-onasJones@users.noreply.github.com>
Date: Mon, 2 Oct 2023 20:22:46 +0200
Subject: [PATCH] Added Search bar
---
src/lib/components/Navbar.svelte | 6 +++++-
src/lib/components/NavbarList.svelte | 29 ++++++++++++++++++++++++++--
src/lib/styles/style.css | 9 +++++++++
3 files changed, 41 insertions(+), 3 deletions(-)
diff --git a/src/lib/components/Navbar.svelte b/src/lib/components/Navbar.svelte
index 4d05883..9e95bc5 100644
--- a/src/lib/components/Navbar.svelte
+++ b/src/lib/components/Navbar.svelte
@@ -1,13 +1,17 @@
diff --git a/src/lib/components/NavbarList.svelte b/src/lib/components/NavbarList.svelte
index a2705be..afd4efb 100644
--- a/src/lib/components/NavbarList.svelte
+++ b/src/lib/components/NavbarList.svelte
@@ -1,6 +1,5 @@
{@html renderedList}
diff --git a/src/lib/styles/style.css b/src/lib/styles/style.css
index 054968a..9894a8b 100644
--- a/src/lib/styles/style.css
+++ b/src/lib/styles/style.css
@@ -132,6 +132,15 @@ details a {
white-space: initial;
}
+input {
+ background-color: var(--container-background-color);
+ border: 1px solid var(--container-background-color);
+ border-radius: 0.5rem;
+ padding: 0.5rem;
+ color: var(--text-color);
+ border: 3px solid var(--background-color);
+}
+
@media screen and (max-width: 900px) {
.container {
flex-direction: column;