@import "../style-scss/import";

.mu-bottom-sheet {
    background-color: $dialogBackgroundColor;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

.mu-bottom-sheet-enter-active,
.mu-bottom-sheet-leave-active{
    transition: transform .3s $easeOutFunction;
    backface-visibility: hidden;
}

.mu-bottom-sheet-enter,
.mu-bottom-sheet-leave-active{
    transform: translate3d(0, 100%, 0);
}