Update "Add Task" button to diamond (#11214)

* Update $purple-400

* Add .diamond-btn

Swapped .rounded-btn for .diamond-btn
This commit is contained in:
Tressley Cahill
2019-07-12 09:36:14 -04:00
committed by Matteo Pagliazzi
parent c29e9ddfc6
commit babceaff42
3 changed files with 19 additions and 14 deletions

View File

@@ -75,7 +75,7 @@
.create-task-area.d-flex
transition(name="slide-tasks-btns")
.d-flex(v-if="openCreateBtn")
.create-task-btn.rounded-btn(
.create-task-btn.diamond-btn(
v-for="type in columns",
:key="type",
@click="createTask(type)",
@@ -83,7 +83,7 @@
)
.svg-icon(v-html="icons[type]", :class='`icon-${type}`')
#create-task-btn.create-btn.rounded-btn.btn.btn-success(
#create-task-btn.create-btn.diamond-btn.btn.btn-success(
@click="openCreateBtn = !openCreateBtn",
:class="{open: openCreateBtn}",
)