fix: new task input styling

This commit is contained in:
kolaente 2022-07-20 21:30:45 +02:00
parent ed338cefcd
commit 7f3c754389
No known key found for this signature in database
GPG key ID: F40E70337AB24C9B

View file

@ -32,7 +32,7 @@
/>
</transition>
<x-button @click="showCreateNewTask" :shadow="false" icon="plus">
{{ $t('list.list.newTaskCta') }}
{{ $t('task.new') }}
</x-button>
</form>
</template>
@ -187,3 +187,20 @@ async function createTask() {
display: none !important;
}
</style>
<style scoped lang="scss">
.add-new-task {
padding: 1rem .7rem .4rem .7rem;
display: flex;
max-width: 450px;
.input {
margin-right: .7rem;
font-size: .8rem;
}
.button {
font-size: .68rem;
}
}
</style>