0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

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 9577f61f3b

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);
}
}