Skip to content
Snippets Groups Projects
Commit 96434609 authored by Chris Lawton's avatar Chris Lawton
Browse files

adding show/hide helper classes/placeholders

parent fbbbd520
No related branches found
No related tags found
No related merge requests found
...@@ -61,3 +61,27 @@ ol { ...@@ -61,3 +61,27 @@ ol {
margin: 0; margin: 0;
list-style: none; list-style: none;
} }
.is-invisible,
%is-invisible {
z-index: -1;
opacity: 0;
transition: opacity, z-index, $transition;
}
.is-visible,
%is-visible {
z-index: 5;
opacity: 1;
transition: opacity, z-index, $transition;
}
.is-hidden,
%is-hidden {
display: none;
}
.is-unhidden,
%is-unhidden {
display: block;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment