Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
feat(modal): adjusted animation beginning
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKanera committed Mar 11, 2021
1 parent c0fca4d commit 68873d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/modal/modal.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template lang="pug">
transition(name='fade', @after-enter='showContent = true')
transition(name='fade', @before-enter='showContent = true')
.wrapper(v-if='display', @click.self='closeModal')
transition(name='popup')
.modal(v-if='showContent')
Expand Down
2 changes: 1 addition & 1 deletion components/project-links/project-links.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</template>

<script lang="ts">
import { defineComponent, ref, unref, watch, watchEffect } from '@nuxtjs/composition-api';
import { defineComponent, ref, unref, watch } from '@nuxtjs/composition-api';
import addIcon from 'vue-material-design-icons/Plus.vue';
import binIcon from 'vue-material-design-icons/Delete.vue';
Expand Down

0 comments on commit 68873d0

Please sign in to comment.