mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-09 14:38:27 +03:00
14 lines
215 B
Text
14 lines
215 B
Text
//
|
|
// Component animations
|
|
// --------------------------------------------------
|
|
|
|
|
|
.collapse {
|
|
position: relative;
|
|
height: 0;
|
|
overflow: hidden;
|
|
transition: height .35s ease;
|
|
&.in {
|
|
height: auto;
|
|
}
|
|
}
|