From 5f18598c0505adf78ed6078fbdee9846b7efddac Mon Sep 17 00:00:00 2001 From: mfluharty Date: Fri, 5 Jul 2019 09:57:38 -0600 Subject: [PATCH] Pin modals at 64px from the top of the viewport Was 30px --- app/assets/stylesheets/framework/modal.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/framework/modal.scss b/app/assets/stylesheets/framework/modal.scss index f75e5b55506..f8b3a1966d7 100644 --- a/app/assets/stylesheets/framework/modal.scss +++ b/app/assets/stylesheets/framework/modal.scss @@ -85,9 +85,9 @@ body.modal-open { .modal { background-color: $black-transparent; - @include media-breakpoint-up(md) { + @include media-breakpoint-up(sm) { .modal-dialog { - margin: 30px auto; + margin: 64px auto; } } }