Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @mixin overlay {
  2. .overlay {
  3. bottom: 0;
  4. left: 0;
  5. position: fixed;
  6. right: 0;
  7. top: 0;
  8. transition: opacity 0.3s ease-in-out;
  9.  
  10. &.is-collapsible {
  11. &.collapse {
  12. display: none;
  13.  
  14. &.in {
  15. display: block;
  16. }
  17. }
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement