From 3851f4657a9593124e25029caa692379acdb63c6 Mon Sep 17 00:00:00 2001 From: David Nahodyl Date: Fri, 7 Jun 2024 20:14:08 -0400 Subject: [PATCH] updated intro and nav --- playground/components/LabeledInput.vue | 2 +- playground/components/nav/NavBar.vue | 28 +++++++++++++++--- playground/pages/index.vue | 41 +++++++++++++------------- 3 files changed, 46 insertions(+), 25 deletions(-) diff --git a/playground/components/LabeledInput.vue b/playground/components/LabeledInput.vue index 6774253..1cae4bb 100644 --- a/playground/components/LabeledInput.vue +++ b/playground/components/LabeledInput.vue @@ -36,7 +36,7 @@ defineEmits(["change"]); :id="id" v-model="model" :name="name" - class="rounded-md px-2 py-1" + class="rounded-md bg-gray-950 px-2 py-1" @change="$emit('change')" />
diff --git a/playground/components/nav/NavBar.vue b/playground/components/nav/NavBar.vue index 23a90b8..b14ba04 100644 --- a/playground/components/nav/NavBar.vue +++ b/playground/components/nav/NavBar.vue @@ -1,5 +1,21 @@