2013-11-16 06:21:12 +08:00
|
|
|
//
|
|
|
|
// Component animations
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
.collapse {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
overflow: hidden;
|
2020-09-03 03:30:23 +08:00
|
|
|
transition: height .35s ease;
|
2013-11-16 06:21:12 +08:00
|
|
|
&.in {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|