🐛 Fixed incorrect modal heights

closes https://github.com/TryGhost/Ghost/issues/14416
refs 1357390ac5

- after switching to a proper package version of our `ember-promise-modals` fork the addon's CSS was injected into the vendor file causing conflicts with our own modal styling
- added `align-items: unset` style override on `.epm-modal-container` so we're not fighting the addon's default `align-items: center;` style
This commit is contained in:
Kevin Ansfield 2022-04-04 09:55:33 +01:00
parent 1357390ac5
commit 9ab2f5dd3e

View File

@ -59,6 +59,7 @@
display: flex;
justify-content: center;
overflow: auto;
align-items: unset;
}
.epm-animating .epm-modal-container {