0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Bug Fix: Modals now fit onto the screen on mobile devices

This commit is contained in:
Matthew Harrison-Jones 2013-09-06 15:38:42 +01:00
parent 900ef39647
commit 53f340cc96

View file

@ -971,6 +971,10 @@ body.blur > *:not(#modal-container) {
opacity: 1;
}
}
@include breakpoint($mobile) {
width: 100%;
}
}
.modal-info {
@ -1029,6 +1033,10 @@ body.blur > *:not(#modal-container) {
.modal-style-wide {
width: 550px;
@include breakpoint($mobile) {
width: 100%;
}
}
.modal-style-centered {