mirror of https://github.com/Kylart/KawAnime.git
17 lines
221 B
CSS
17 lines
221 B
CSS
|
.page-enter-active, .page-leave-active {
|
||
|
transition: opacity .5s;
|
||
|
}
|
||
|
|
||
|
.page-enter, .page-leave-active {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
.dragable
|
||
|
{
|
||
|
-webkit-app-region: drag;
|
||
|
}
|
||
|
|
||
|
.non-dragable
|
||
|
{
|
||
|
-webkit-app-region: no-drag;
|
||
|
}
|