mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
8 lines
213 B
SCSS
8 lines
213 B
SCSS
|
@mixin details-transition-open {
|
||
|
@include transition(max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s);
|
||
|
}
|
||
|
|
||
|
@mixin details-transition-close {
|
||
|
@include transition(max-height 0.8s cubic-bezier(0.5, 0, 1, 0) 0s);
|
||
|
}
|