/**
 * @author: Yoann Le Crom <yoann.lecrom@abstractive.fr>
 *
 * Scroller for flexbox parent
 */

.Scroller {
    position: relative;
    height: 100%;
    width: 100%;
}

.Scroller-content {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-transform: translate3d(0, 0, 0); /* Fix z-index scrollbar issue on Chrome */
}
