vodkabears / Remodal

No longer actively maintained.
http://vodkabears.github.io/remodal/
MIT License
2.76k stars 774 forks source link

height: 100% = scroll page to top when modal opens #267

Closed zychu closed 7 years ago

zychu commented 7 years ago

Hi,

plugin works really well but why it's incompatible with sticky footer methods with negative margins that are using height: 100% attribute for html and body?

is there any workaround for that problem like hooking into modal appearing and change that params before modal opens and then bring them back again after it close?

Cheers, Maciej

zychu commented 7 years ago

quick solution, that helped and screen is not going to top anymore when modal is opening.

html, body {
  height: 100%;
}

html.remodal-is-locked, html.remodal-is-locked body {
  height: auto;
}