transitions icon indicating copy to clipboard operation
transitions copied to clipboard

container style height 100% overwritten after first transition

Open jonlachlan opened this issue 9 years ago • 1 comments

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...

jonlachlan avatar Jun 06 '15 21:06 jonlachlan

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.

jamielob avatar Jun 07 '15 17:06 jamielob