diff options
author | Phil Hughes <me@iamphill.com> | 2019-07-09 07:56:39 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2019-07-09 07:56:39 +0000 |
commit | dd9b303fbca80fef26526c5d8a3d58a6227edc25 (patch) | |
tree | f10004fa5f6ecce282234bb6e21035c917cce42d /app | |
parent | 07afb13dbcdd1b6d83477afc96bbaf22d50476a9 (diff) | |
parent | 5f18598c0505adf78ed6078fbdee9846b7efddac (diff) | |
download | gitlab-ce-dd9b303fbca80fef26526c5d8a3d58a6227edc25.tar.gz |
Merge branch 'mf-modal-style-pin-position' into 'master'
Pin modals at 64px from the top of the viewport
See merge request gitlab-org/gitlab-ce!30412
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/modal.scss | 4 |
1 files 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; } } } |