Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
fix(ui): files group classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Jan 21, 2022
1 parent 4160207 commit 592805f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/peeky-client/src/features/test-file/TestFiles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ subscribeToMore({
<div class="h-[1px] bg-primary-500/20 flex-1" />
<div class="flex items-center space-x-1">
<span>In progress</span>
<span class="text-sm px-1.5 rounded-full leading-tight border border- primary-500/40mt-0.5">{{ groupedFiles.in_progress.length }}</span>
<span class="text-sm px-1.5 rounded-full leading-tight border border-primary-500/40 mt-0.5">{{ groupedFiles.in_progress.length }}</span>
</div>
<div class="h-[1px] bg-primary-500/20 flex-1" />
</div>
Expand Down Expand Up @@ -213,7 +213,7 @@ subscribeToMore({
<div class="h-[1px] bg-yellow-500/20 flex-1" />
<div class="flex items-center space-x-1">
<span>Todo</span>
<span class="text-sm px-1.5 rounded-full leading-tight border border- yellow-500/40mt-0.5">{{ groupedFiles.todo.length }}</span>
<span class="text-sm px-1.5 rounded-full leading-tight border border-yellow-500/40 mt-0.5">{{ groupedFiles.todo.length }}</span>
</div>
<div class="h-[1px] bg-yellow-500/20 flex-1" />
</div>
Expand Down

0 comments on commit 592805f

Please sign in to comment.