Skip to content

Commit 719f7b4

Browse files
committed
chore(examples): add missing semicolon in CSS file from transitions example (#2379)
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines --> small detail in css file
1 parent f0555b6 commit 719f7b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/transitions/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
transition: opacity .5s ease;
66
}
77
.fade-enter, .fade-leave-active {
8-
opacity: 0
8+
opacity: 0;
99
}
1010
.child-view {
1111
position: absolute;

0 commit comments

Comments
 (0)