Skip to content

Commit 3a8bd56

Browse files
authored
ADD: transition variants.
1 parent 17bbe16 commit 3a8bd56

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

source/css/_mixins/base.styl

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ the-transition() {
44
transition-delay: 0s;
55
}
66

7+
the-transition-ease-in() {
8+
transition-duration: 0.2s;
9+
transition-timing-function: ease-in;
10+
transition-delay: 0s;
11+
}
12+
13+
the-transition-ease-out() {
14+
transition-duration: 0.2s;
15+
transition-timing-function: ease-out;
16+
transition-delay: 0s;
17+
}
18+
719
mobile-smallest() {
820
@media (max-width: 413px) {
921
{block}

0 commit comments

Comments
 (0)