Skip to content
Snippets Groups Projects
Commit 6edd593f authored by KDSBrowne's avatar KDSBrowne
Browse files

flip arrow icon for edge permission overlay

parent 55f61602
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ class PermissionsOverlay extends Component {
},
'Microsoft Edge': {
top: '38em',
left: '38em',
left: '60em',
},
};
......
@mixin arrowIconStyle() {
&:after {
top: -50px;
left: -20px;
font-size: 20px;
-webkit-animation: bounce 2s infinite;
animation: bounce 2s infinite;
display: block;
font-family: 'bbb-icons';
content: "\E906";
position: relative;
}
:global(.browser-edge) &:after {
top: -50px;
left: -15.5em;
font-size: 20px;
-webkit-animation: bounceRotate 2s infinite;
animation: bounceRotate 2s infinite;
}
}
.overlay {
position: fixed;
z-index: 1002;
......@@ -25,17 +47,7 @@
opacity: .6;
}
&:after {
display: block;
font-family: 'bbb-icons';
content: "\E906";
position: relative;
top: -50px;
left: -20px;
font-size: 20px;
-webkit-animation: bounce 2s infinite;
animation: bounce 2s infinite;
}
@include arrowIconStyle();
}
@-webkit-keyframes bounce {
......@@ -80,6 +92,21 @@
}
}
@keyframes bounceRotate {
0%, 20%, 50%, 80%, 100% {
-ms-transform: translateY(0) rotate(180deg);
transform: translateY(0) rotate(180deg);
}
40% {
-ms-transform: translateY(10px) rotate(180deg);
transform: translateY(10px) rotate(180deg);
}
60% {
-ms-transform: translateY(5px) rotate(180deg);
transform: translateY(5px) rotate(180deg);
}
}
@keyframes fade-in {
0% {
opacity: 0;
......
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