Skip to content

Commit

Permalink
fix: Add gap between active sessions
Browse files Browse the repository at this point in the history
The gap got lost in the Angular update.
  • Loading branch information
MoritzWeber0 committed Feb 16, 2024
1 parent 4c76b60 commit 5ba797b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ <h2 class="mb-3 text-xl font-medium">No active sessions</h2>
</div>
</div>

<div *ngIf="(userSessionService.sessions$ | async)?.length">
<div
class="flex flex-col gap-2"
*ngIf="(userSessionService.sessions$ | async)?.length"
>
<a
class="w-full max-w-[85vw]"
matInput
Expand Down

0 comments on commit 5ba797b

Please sign in to comment.