From 02e06dea7d6530424192f6bc3024fc60416ca561 Mon Sep 17 00:00:00 2001
From: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
Date: Thu, 14 Dec 2023 12:13:23 +0100
Subject: [PATCH] :lipstick: added width between text & radiobtns

Co-authored-by: haraldnilsen <harald_998@hotmail.com>
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
---
 frontend/src/components/userform/UserFormInput.svelte | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/components/userform/UserFormInput.svelte b/frontend/src/components/userform/UserFormInput.svelte
index 91a1276..5c69e8d 100644
--- a/frontend/src/components/userform/UserFormInput.svelte
+++ b/frontend/src/components/userform/UserFormInput.svelte
@@ -7,7 +7,7 @@
 </script>
 
 <div class="flex justify-start items-center h-1/4 w-full ">
-    <p class="text-primary font-bold">{label}:</p>
+    <p class="text-primary font-bold w-1/5">{label}:</p>
     {#if inputType == "radio"}
         <RadioButtons options={options}/>
     {/if}