fix: new task input styling
This commit is contained in:
parent
ed338cefcd
commit
7f3c754389
1 changed files with 18 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
||||||
/>
|
/>
|
||||||
</transition>
|
</transition>
|
||||||
<x-button @click="showCreateNewTask" :shadow="false" icon="plus">
|
<x-button @click="showCreateNewTask" :shadow="false" icon="plus">
|
||||||
{{ $t('list.list.newTaskCta') }}
|
{{ $t('task.new') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
</form>
|
</form>
|
||||||
</template>
|
</template>
|
||||||
|
@ -187,3 +187,20 @@ async function createTask() {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
</style>
|
</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>
|
||||||
|
|
Loading…
Reference in a new issue