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

remove pointer events from top link when not in use

parent dd177c54
No related branches found
No related tags found
No related merge requests found
...@@ -170,6 +170,7 @@ ...@@ -170,6 +170,7 @@
color: $color--black-50; color: $color--black-50;
opacity: 0; opacity: 0;
transition: opacity $transition; transition: opacity $transition;
pointer-events: none;
@include media-query(tablet-portrait) { @include media-query(tablet-portrait) {
right: 30px; right: 30px;
...@@ -178,6 +179,7 @@ ...@@ -178,6 +179,7 @@
&.is-visible { &.is-visible {
opacity: 1; opacity: 1;
pointer-events: all;
} }
} }
......
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