Cleaned up styling

This commit is contained in:
Josh Creek
2019-04-14 14:55:29 +01:00
parent c88a5684ed
commit 40f9eeead9
3 changed files with 8 additions and 3 deletions
-1
View File
@@ -23,6 +23,5 @@ export default {
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
text-align: center; text-align: center;
color: #2c3e50; color: #2c3e50;
margin-top: 60px;
} }
</style> </style>
+2 -2
View File
@@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<form @submit="importCSV"> <form @submit="importCSV">
<textarea v-model="csv" name="csv" placeholder="Add statement csv..."></textarea> <textarea v-model="csv" name="csv" placeholder="Paste bank statement csv..."></textarea>
<input type="submit" value="Import CSV" class="btn"> <input type="submit" value="Import CSV" class="btn">
</form> </form>
</div> </div>
@@ -70,7 +70,7 @@ export default {
form { form {
display: flex; display: flex;
} }
input[type="text"] { textarea {
flex: 10; flex: 10;
padding: 5px; padding: 5px;
} }
+6
View File
@@ -7,3 +7,9 @@
</div> </div>
</div> </div>
</template> </template>
<style scoped>
#header {
margin: 60px 0 60px 0;
}
</style>