Skip to content
This repository was archived by the owner on May 12, 2020. It is now read-only.

Commit abc2f98

Browse files
committed
build: correct filename case error under linux
linux is sensitive to filename case
1 parent ec39f42 commit abc2f98

3 files changed

Lines changed: 25 additions & 0 deletions

File tree

src/style/transition/aside.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
$aside-transition-time: 0.3s;
2+
3+
.horizontal-collapse-transition {
4+
transition: all $aside-transition-time;
5+
}
6+
7+
.v-leave-active, .v-enter-active {
8+
transition: all $aside-transition-time;
9+
}

src/style/transition/index.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@import './aside.scss';
2+
@import './routes.scss';

src/style/transition/routes.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.fade {
2+
&-enter {
3+
opacity: 0;
4+
transform: translateX(-5%);
5+
}
6+
7+
&-leave-to {
8+
opacity: 0;
9+
}
10+
11+
&-enter-active, &-leave-active {
12+
transition: opacity .3s, transform .3s;
13+
}
14+
}

0 commit comments

Comments
 (0)