Skip to content

Commit

Permalink
Merge pull request #13 from joelmandell/ie11
Browse files Browse the repository at this point in the history
Fixing issue in IE11 with overlay.
  • Loading branch information
Christoph Biering authored Jan 13, 2020
2 parents 2e019d8 + f569482 commit 72608a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/VueUp.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div
class="vue-up"
:class="{ '--show': show }"
:class="{ 'show_el': show }"
:style="{ backgroundColor: backgroundColor }">

<div
Expand Down Expand Up @@ -74,11 +74,11 @@
pointer-events: none;
}
.vue-up.--show {
.vue-up.show_el {
opacity: 1;
}
.vue-up:not(.--show) {
.vue-up:not(.show_el) {
opacity: 0;
transition: opacity .4s;
}
Expand Down

0 comments on commit 72608a9

Please sign in to comment.