|
@ -157,7 +157,7 @@ |
|
|
> |
|
|
> |
|
|
<div class="w-full px-6 py-6 text-slate-900 text-center"> |
|
|
<div class="w-full px-6 py-6 text-slate-900 text-center"> |
|
|
<p class="text-lg mb-4"> |
|
|
<p class="text-lg mb-4"> |
|
|
Would you like to turn on notifications for this app? |
|
|
Would you like to <b>turn on</b> notifications for this app? |
|
|
</p> |
|
|
</p> |
|
|
|
|
|
|
|
|
<button |
|
|
<button |
|
@ -181,6 +181,32 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div |
|
|
|
|
|
v-if="notification.type === 'notification-mute'" |
|
|
|
|
|
class="absolute inset-0 h-screen flex flex-col items-center justify-center bg-slate-900/50" |
|
|
|
|
|
> |
|
|
|
|
|
<div |
|
|
|
|
|
class="flex w-11/12 max-w-sm mx-auto mb-3 overflow-hidden bg-white rounded-lg shadow-lg" |
|
|
|
|
|
> |
|
|
|
|
|
<div class="w-full px-6 py-6 text-slate-900 text-center"> |
|
|
|
|
|
<p class="text-lg mb-4"> |
|
|
|
|
|
Would you like to <b>turn off</b> notifications for this app? |
|
|
|
|
|
</p> |
|
|
|
|
|
|
|
|
|
|
|
<button |
|
|
|
|
|
class="block w-full text-center text-md font-bold uppercase bg-rose-600 text-white px-2 py-2 rounded-md mb-2" |
|
|
|
|
|
> |
|
|
|
|
|
Turn off Notifications |
|
|
|
|
|
</button> |
|
|
|
|
|
<button |
|
|
|
|
|
@click="close(notification.id)" |
|
|
|
|
|
class="block w-full text-center text-md font-bold uppercase bg-slate-600 text-white px-2 py-2 rounded-md" |
|
|
|
|
|
> |
|
|
|
|
|
Keep it On |
|
|
|
|
|
</button> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</Notification> |
|
|
</Notification> |
|
|
</div> |
|
|
</div> |
|
|