Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2018-08-13 10:00:53 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-08-13 10:00:53 +0300
commit57661dff6d444ac50bcb685425a704544bb653d9 (patch)
tree4b2e9dcf5732694c4f5e20d10d234717e49c8435 /scss/_modal.scss
parentc0b40745e0bc777fa9a435070f7f08442a248b87 (diff)
Tweak modal transform (#27005)
Diffstat (limited to 'scss/_modal.scss')
-rw-r--r--scss/_modal.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss
index 5eadbf5b84..df8da68ffa 100644
--- a/scss/_modal.scss
+++ b/scss/_modal.scss
@@ -43,10 +43,10 @@
// When fading in the modal, animate it to slide down
.modal.fade & {
@include transition($modal-transition);
- transform: translate(0, -25%);
+ transform: $modal-fade-transform;
}
.modal.show & {
- transform: translate(0, 0);
+ transform: $modal-show-transform;
}
}