mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-29 11:01:34 +08:00
15 lines
240 B
Text
15 lines
240 B
Text
//
|
|
// Component animations
|
|
// --------------------------------------------------
|
|
|
|
|
|
.collapse {
|
|
position: relative;
|
|
height: 0;
|
|
overflow: hidden;
|
|
overflow: visible \9;
|
|
.transition(height .35s ease);
|
|
&.in {
|
|
height: auto;
|
|
}
|
|
}
|