Fix z-index issues

This commit is contained in:
fragosti
2018-06-21 17:40:17 -07:00
parent 82789d5315
commit b0000bb276
6 changed files with 63 additions and 49 deletions

View File

@@ -11,13 +11,15 @@ const PlainAnimation: React.StatelessComponent<AnimationProps> = props => <div {
const appearFromBottomFrames = keyframes`
from {
position: absolute;
position: fixed;
bottom: -500px;
left: 0px;
}
to {
position: absolute;
position: fixed;
bottom: 0px;
left: 0px;
}
`;