You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
748 B
39 lines
748 B
7 years ago
|
<template>
|
||
|
<div :class="{'nav-open': $sidebar.showSidebar}">
|
||
|
<notifications></notifications>
|
||
|
<router-view></router-view>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {}
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
.vue-notifyjs.notifications{
|
||
|
.list-move {
|
||
|
transition: transform 0.3s, opacity 0.4s;
|
||
|
}
|
||
|
.list-item {
|
||
|
display: inline-block;
|
||
|
margin-right: 10px;
|
||
|
|
||
|
}
|
||
|
.list-enter-active {
|
||
|
transition: transform 0.2s ease-in, opacity 0.4s ease-in;
|
||
|
}
|
||
|
.list-leave-active {
|
||
|
transition: transform 1s ease-out, opacity 0.4s ease-out;
|
||
|
}
|
||
|
|
||
|
.list-enter {
|
||
|
opacity: 0;
|
||
|
transform: scale(1.1);
|
||
|
|
||
|
}
|
||
|
.list-leave-to {
|
||
|
opacity: 0;
|
||
|
transform: scale(1.2, 0.7);
|
||
|
}
|
||
|
}
|
||
|
</style>
|