ui-action-sheet {
}

.ui-action-sheet {
    background: inherit;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    transform: translateY(100%);
    transition: transform .2s $cubic-bezier;
    transition-delay: .1s;
    z-index: $mask-z-index + 1;
    &.ui-pop-up {
        transform: translateY(0);
    }
    &.ui-show {
        display: block;
    }
}