Created
February 25, 2018 09:03
-
-
Save ncole458/e094ece3fd5b6f3af587c7c8ed2155bf to your computer and use it in GitHub Desktop.
Fix Carousel in Bootstrap 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// FIX BOOTSTRAP CAROUSEL WHITE-SPACE BETWEEN SLIDES | |
.carousel-item { | |
transition: -webkit-transform 0.5s ease !important; | |
transition: transform 0.5s ease !important; | |
transition: transform 0.5s ease, -webkit-transform 0.5s ease !important; | |
-webkit-backface-visibility: visible !important; | |
backface-visibility: visible !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment