Documentation
This commit is contained in:
parent
06c6aabd9d
commit
40686c99c6
53 changed files with 5828 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
// COMPONENT ANIMATIONS
|
||||
// --------------------
|
||||
|
||||
.fade {
|
||||
.transition(opacity .15s linear);
|
||||
opacity: 0;
|
||||
&.in {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.collapse {
|
||||
.transition(height .35s ease);
|
||||
position:relative;
|
||||
overflow:hidden;
|
||||
height: 0;
|
||||
&.in {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue