Fix height of task add button
This commit is contained in:
parent
d61a7511da
commit
ed0ae210ac
2 changed files with 7 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="loader-container" :class="{ 'is-loading': listService.loading || taskCollectionService.loading}">
|
||||
<form @submit.prevent="addTask()">
|
||||
<div class="field is-grouped">
|
||||
<div class="field is-grouped task-add">
|
||||
<p class="control has-icons-left is-expanded" :class="{ 'is-loading': taskService.loading}">
|
||||
<input v-focus class="input" :class="{ 'disabled': taskService.loading}" v-model="newTaskText" type="text" placeholder="Add a new task...">
|
||||
<span class="icon is-small is-left">
|
||||
|
|
|
@ -28,4 +28,9 @@
|
|||
|
||||
.sharables-list, .sharables-namespace{
|
||||
padding: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.task-add .button {
|
||||
padding: 10px 1em;
|
||||
height: 40px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue