remove opacity on toast

This commit is contained in:
Hayden 2023-01-18 15:18:12 -09:00
parent a0ab1fe8d8
commit 3d9b155fc3
No known key found for this signature in database
GPG key ID: 17CF79474E257545

View file

@ -4,7 +4,7 @@
<div <div
v-for="(notify, index) in notifications.slice(0, 4)" v-for="(notify, index) in notifications.slice(0, 4)"
:key="notify.id" :key="notify.id"
class="my-2 w-[300px] rounded-md p-3 text-sm text-white opacity-75" class="my-2 w-[300px] rounded-md p-3 text-sm text-white"
:class="{ :class="{
'bg-primary': notify.type === 'info', 'bg-primary': notify.type === 'info',
'bg-red-600': notify.type === 'error', 'bg-red-600': notify.type === 'error',