mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-09 15:40:03 +00:00
21 lines
272 B
Plaintext
Executable File
21 lines
272 B
Plaintext
Executable File
// COMPONENT ANIMATIONS
|
|
// --------------------
|
|
|
|
.fade {
|
|
opacity: 0;
|
|
.transition(opacity .15s linear);
|
|
&.in {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.collapse {
|
|
position: relative;
|
|
height: 0;
|
|
overflow: hidden;
|
|
.transition(height .35s ease);
|
|
&.in {
|
|
height: auto;
|
|
}
|
|
}
|