ThierryDD
4/16/2018 - 12:36 PM

Carousel Component SCSS - Iteration 3

:host { // 🅰
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: var(--font-size); // 🅱
    overflow: scroll;
    -webkit-overflow-scrolling: touch; // 🅲
}

.carousel-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}