Files
timebank-cc-public/resources/views/livewire/unread-indicator.blade.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

8 lines
331 B
PHP

<div>
@if ($unreadCount > 0)
<span class="absolute top-0 right-0 flex h-3 w-3">
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-red-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-3 w-3 bg-green-900"></span>
</span>
@endif
</div>