fix(teams): maybe goodish style?

This commit is contained in:
Sabe Jones
2021-07-27 14:10:34 -05:00
committed by SabreCat
parent 61d396204f
commit 395d9e7650
3 changed files with 9 additions and 5 deletions

View File

@@ -15,7 +15,11 @@
right: 0px;
.task-icon {
width: 35%;
width: 30px;
}
.task-label {
margin-top: 1px;
}
.dropdown-item:hover {

View File

@@ -59,7 +59,7 @@
v-for="type in columns"
:key="type"
@click="createTask(type)"
class="dropdown-item d-flex pl-2 py-1"
class="dropdown-item d-flex px-2 py-1"
>
<div class="d-flex align-items-center justify-content-center task-icon">
<div
@@ -68,7 +68,7 @@
v-html="icons[type]"
></div>
</div>
<div class="ml-1">
<div class="task-label ml-2">
{{ $t(type) }}
</div>
</div>

View File

@@ -186,7 +186,7 @@
v-for="type in columns"
:key="type"
@click="createTask(type)"
class="dropdown-item d-flex pl-2 py-1"
class="dropdown-item d-flex px-2 py-1"
>
<div class="d-flex align-items-center justify-content-center task-icon">
<div
@@ -195,7 +195,7 @@
v-html="icons[type]"
></div>
</div>
<div class="ml-1">
<div class="task-label ml-2">
{{ $t(type) }}
</div>
</div>