transitions
transitions copied to clipboard
container style height 100% overwritten after first transition
I set my container style height to 100% in css, however after my first transition the height is reset to the current height of the browser window. When I inspect the html elements on the page, there's an inline style for height
that is added.
I was able to avoid this by adding !important
to the .transitions-container
css:
.transitions-container
{
height:100% !important;
}
It would be nice if I didn't need to have the !important
flag...
I think I wrote it like that in order to fix a 'jump' that was occurring on certain devices - I'll have to take a look and see if there's a better way to do it.