diff --git a/src/lib/apps/todoApp.svelte b/src/lib/apps/todoApp.svelte index b123a76..b23b4c0 100644 --- a/src/lib/apps/todoApp.svelte +++ b/src/lib/apps/todoApp.svelte @@ -59,25 +59,28 @@ input { padding: 5px; margin: 0px; - border: solid rgb(161, 161, 161) 1px; + border: solid var(--gray) 1px; border-radius: 5px; } button { padding: 5px; margin: 0px; - border: solid rgb(182, 182, 182) 1px; + background-color: var(--lightgray); + border: solid var(--gray) 1px; border-radius: 5px; } hr { - border: 1px solid rgb(182, 182, 182); + margin-top: 10px; + margin-bottom: 10px; + border: 1px solid var(--gray); } .panel { background-color: rgb(245, 253, 255); padding: 10px; - border: solid rgb(182, 182, 182) 1px; + border: solid var(--gray) 1px; border-radius: 5px; } @@ -113,7 +116,7 @@ hr { padding: 10px; margin: 5px 0px 5px 0px; background-color: rgb(255, 255, 255); - border: solid rgb(182, 182, 182) 1px; + border: solid var(--gray) 1px; border-radius: 5px; display: flex; flex-wrap: wrap; diff --git a/src/lib/components/footer.svelte b/src/lib/components/footer.svelte index 4839d23..c90761f 100644 --- a/src/lib/components/footer.svelte +++ b/src/lib/components/footer.svelte @@ -4,4 +4,10 @@ and svelte

- \ No newline at end of file + + + \ No newline at end of file diff --git a/src/lib/components/nav.svelte b/src/lib/components/nav.svelte index 38fd19a..01d8bef 100644 --- a/src/lib/components/nav.svelte +++ b/src/lib/components/nav.svelte @@ -1,16 +1,21 @@ -