mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-17 19:42:15 +00:00
fix(teams): Close button and padding fix
This commit is contained in:
parent
24349bed0a
commit
9d4bf22720
2 changed files with 4 additions and 4 deletions
|
|
@ -39,7 +39,7 @@
|
|||
</strong>
|
||||
<a href="mailto:testing@habitica.com">Submit bugs and feedback to testing@habitica.com.</a>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="col-12 px-0">
|
||||
<router-view />
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -53,18 +53,18 @@
|
|||
v-if="task.group.assignedUsers"
|
||||
>
|
||||
<span
|
||||
v-if="assignedUsersCount > 1 && completionsCount"
|
||||
v-if="assignedUsersCount > 1"
|
||||
class="mr-1 d-inline-flex align-items-center"
|
||||
>
|
||||
<span
|
||||
class="small-check my-auto"
|
||||
v-if="!showStatus"
|
||||
v-if="!showStatus && completionsCount"
|
||||
:class="{'green-50': completionsCount === assignedUsersCount}"
|
||||
v-html="icons.check"
|
||||
></span>
|
||||
<span
|
||||
class="my-auto ml-1 mr-2"
|
||||
v-if="!showStatus"
|
||||
v-if="!showStatus && completionsCount"
|
||||
>
|
||||
{{ completionsCount }}/{{ assignedUsersCount }}
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Reference in a new issue