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