This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.

8 lines
213 B
SCSS
Raw Normal View History

2023-10-12 14:01:05 +02:00
@mixin details-transition-open {
@include transition(max-height 0.2s cubic-bezier(0, 1, 0, 1) -0.1s);
}
@mixin details-transition-close {
@include transition(max-height 0.2s cubic-bezier(0.5, 0, 1, 0) 0s);
}