Blame view

src/design/transition/breadcrumb.less 278 Bytes
陈文彬 authored
1
2
.breadcrumb-enter-active,
.breadcrumb-leave-active {
3
  transition: all 0.24s;
陈文彬 authored
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
}

.breadcrumb-enter-from,
.breadcrumb-leave-active {
  opacity: 0;
  transform: translateX(16px);
}

.breadcrumb-move {
  transition: all 0.38s;
}

.breadcrumb-leave-active {
  position: absolute;
}