0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed signup form modal height

Refs https://www.notion.so/ghost/Embed-testing-0193905e46d449b5ad865f7364176814?pvs=4#325a9bc8979a4be9bf436c3f619d8e53
- Previous commit broke the height as the negative margin should've only been applied horizontally
This commit is contained in:
Sanne de Vries 2023-06-08 14:18:16 +02:00
parent 7a74563e21
commit 9d93d21a2d

View file

@ -3137,8 +3137,8 @@ p.theme-validation-details {
.modal-signup-form-embed-main .modal-body {
height: 320px;
margin: -32px;
padding: 32px;
margin: 0 -32px;
padding: 0 32px;
overflow-y: auto;
}