litl' space

This commit is contained in:
Julien Calixte
2023-04-09 10:55:18 +02:00
parent 8842d3c6e0
commit 24035dda12

View File

@@ -36,7 +36,7 @@ const saveTask = () => {
<template> <template>
<div> <div>
<h1>New Task Form</h1> <h1>Create a task</h1>
<h2>Estimation: {{ totalEstimation }} minutes</h2> <h2>Estimation: {{ totalEstimation }} minutes</h2>
<form @submit.prevent="saveTask"> <form @submit.prevent="saveTask">
<button type="submit">save task</button> <button type="submit">save task</button>
@@ -49,4 +49,8 @@ const saveTask = () => {
</div> </div>
</template> </template>
<style scoped></style> <style scoped lang="scss">
form {
padding: 1rem 0;
}
</style>