Update NotificationCard.vue, add fade transition on mount

This commit is contained in:
Daniel Supernault 2019-12-23 23:46:29 -07:00
parent eef62b4961
commit fd65d93929
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
<template>
<div>
<div>
<transition name="fade">
<div class="card notification-card shadow-none border">
<div class="card-header bg-white">
<p class="mb-0 d-flex align-items-center justify-content-between">
@ -57,7 +58,8 @@
</div>
</div>
</div>
</div>
</transition>
</div>
</template>
<style type="text/css" scoped></style>