Merge pull request #4011 from PaulAdamDavis/fix-notifications

Fix notification position when PSM is open
This commit is contained in:
Matt Enlow 2014-09-11 08:48:31 -06:00
commit 1d673eab03

View File

@ -11,8 +11,9 @@
left: 0;
z-index: 980;
width: 300px;
transition: transform $side-outlet-transition-duration cubic-bezier(0.1, 0.7, 0.1, 1);
body.right-outlet-expanded & {
transform: translate3d(360px, 0px, 0px);
transform: translate3d(350px, 0px, 0px);
}
}
@ -22,7 +23,8 @@
left: 0;
right: 0;
z-index: 9999;
body.right-outlet-expanded & {
transition: transform $side-outlet-transition-duration cubic-bezier(0.1, 0.7, 0.1, 1);
body.right-outlet-expanded & {
transform: translate3d(100%, 0px, 0px);
}
}