Guest User

Untitled

a guest
Mar 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. .toggle-content {
  2. display: none;
  3. height: 0;
  4. overflow: hidden;
  5. transition: height 350ms ease-in-out;
  6. }
  7.  
  8. .toggle-content.is-visible {
  9. display: block;
  10. height: auto;
  11. }
Add Comment
Please, Sign In to add comment