Skip to content

Instantly share code, notes, and snippets.

@mikedijkstra
Created January 16, 2017 19:07
Show Gist options
  • Save mikedijkstra/c6662a9b82efdca761e705e82564c693 to your computer and use it in GitHub Desktop.
Save mikedijkstra/c6662a9b82efdca761e705e82564c693 to your computer and use it in GitHub Desktop.
Overly Module
@mixin overlay {
.overlay {
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
transition: opacity 0.3s ease-in-out;
&.is-collapsible {
&.collapse {
display: none;
&.in {
display: block;
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment