From c1f0a1b7f38a581fe8b3ca9ff661c2f5a57d7f0b Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 6 Sep 2020 14:33:45 +0200 Subject: [PATCH] Padding for air around elements. --- src/components/WinnerPage.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/WinnerPage.vue b/src/components/WinnerPage.vue index 988f608..434f9d7 100644 --- a/src/components/WinnerPage.vue +++ b/src/components/WinnerPage.vue @@ -62,11 +62,9 @@ export default { this.name = winnerObject.name; const _wines = await fetch("/api/wines/prelottery"); this.wines = await _wines.json(); - console.log(this.wines); }, methods: { chosenWine: async function(name) { - console.log("chosen a wine"); let posted = await postWineChosen(this.id, name); console.log("response", posted); if (posted.success) { @@ -82,7 +80,8 @@ export default { .container { display: flex; justify-content: center; - margin-top: 4rem; + margin-top: 2rem; + padding: 2rem; } .sent-container { width: 100%;