Update widget unread count style

This commit is contained in:
Abhinav Raut
2026-04-25 12:36:59 +05:30
parent ea4f8d75d3
commit be7369d64f
@@ -1,7 +1,7 @@
<template>
<span
v-if="count > 0"
class="bg-primary text-primary-foreground text-xs rounded-full min-w-[1.2rem] h-5 flex items-center justify-center font-bold"
class="bg-primary text-primary-foreground text-xs rounded-full min-w-[1.3rem] h-5 flex items-center justify-center"
>
{{ count > 9 ? '9+' : count }}
</span>