Small change to make user all note option menus fade in
This commit is contained in:
@@ -64,20 +64,26 @@
|
||||
|
||||
}
|
||||
|
||||
.modal-fade-enter,
|
||||
.modal-fade-leave-active {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.modal-fade-enter-active,
|
||||
.modal-fade-leave-active {
|
||||
transition: opacity .5s ease;
|
||||
/*.fade-enter-active {*/
|
||||
animation: fade-in .3s;
|
||||
}
|
||||
/*.fade-leave-active {*/
|
||||
animation: fade-in .1s reverse;
|
||||
}
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<template>
|
||||
<transition name="modal-fade">
|
||||
<!-- <transition name="fade"> -->
|
||||
<div>
|
||||
|
||||
<div class="slide-container" :style="{ 'background-color':bgColor, 'color':textColor}">
|
||||
|
Reference in New Issue
Block a user