This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This will show/hide element with fade transition. Hidden element won't overlap any other. | |
*/ | |
.fade-in-out { | |
height: 0; | |
opacity: 0; | |
transition: opacity 300ms, height 10ms 300ms; /* delay height transition until opacity is done */ | |
&.hover{ | |
height: 100%; |