From 87a1d237efe4f184cb0d02d43eb4aae910f50e95 Mon Sep 17 00:00:00 2001 From: vekaste <vekaste@stud.ntnu.no> Date: Wed, 1 May 2024 15:55:17 +0200 Subject: [PATCH] feat: adding padding to make form look nice --- src/components/SavingGoalComponents/SavingGoalCreate.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/SavingGoalComponents/SavingGoalCreate.vue b/src/components/SavingGoalComponents/SavingGoalCreate.vue index e839cd5..e5b1d5a 100644 --- a/src/components/SavingGoalComponents/SavingGoalCreate.vue +++ b/src/components/SavingGoalComponents/SavingGoalCreate.vue @@ -24,7 +24,6 @@ const createGoalClick = async () => { targetDate: date.value + " 00:00:00.000000000", }; - console.log(createGoalPayload) try { let response = await GoalService.createGoal({ requestBody: createGoalPayload }); @@ -85,5 +84,7 @@ const createGoalClick = async () => { .col-lg-8 { width: 63%; margin-top: 50px; + padding-right: 56px; + padding-bottom: 28px; } </style> \ No newline at end of file -- GitLab