Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vue-transitions.less « stylesheets « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdfef3e1ea59b824591c4308194b4d676435a01d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.fade-in-enter-active {
  transition: opacity 1s ease;
}

.fade-in-enter-from {
  opacity: 0;
}

// 'slow' as in jquery.animate's 'slow' value
.slow-fade-out-leave-active {
  transition: opacity .6s ease;
}

.slow-fade-out-leave-to {
  opacity: 0;
}