/** * Action Sheets * -------------------------------------------------- */ .action-sheet { @include translate3d(0, 100%, 0); position: fixed; bottom: 0; left: 15px; z-index: $zindex-modal; overflow: hidden; width: calc(100% - 30px); .button { display: block; padding: 10px; width: 100%; border-radius: none; background-color: transparent; color: $primary; font-size: 18px; &.destructive { color: $assertive; } } } .action-sheet-title { padding: 10px; text-align: center; font-size: 12px; } .action-sheet-group { margin-bottom: 10px; border-radius: $sheet-border-radius; background-color: rgba($sheet-bg-color, $sheet-opacity); }