1{{define "notifications/fragments/count"}}
2 {{if and .Count (gt .Count 0)}}
3 <span class="absolute -top-1.5 -right-0.5 min-w-[16px] h-[16px] px-1 bg-red-500 text-white text-xs font-medium rounded-full flex items-center justify-center">
4 {{if gt .Count 99}}99+{{else}}{{.Count}}{{end}}
5 </span>
6 {{end}}
7{{end}}