fix(teams): Close button and padding fix

This commit is contained in:
SabreCat
2022-03-04 15:15:50 -06:00
parent 24349bed0a
commit 9d4bf22720
2 changed files with 4 additions and 4 deletions

View File

@@ -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>

View File

@@ -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>