a zip code crypto-currency system good for red ONLY

action-sheet.scss 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @import "../../themes/ionic.globals";
  2. // Action Sheet
  3. // --------------------------------------------------
  4. /// @prop - Width of the action sheet
  5. $action-sheet-width: 100% !default;
  6. /// @prop - Maximum width of the action sheet
  7. $action-sheet-max-width: 500px !default;
  8. ion-action-sheet {
  9. @include position(0, null, null, 0);
  10. position: absolute;
  11. z-index: $z-index-overlay;
  12. display: block;
  13. width: $action-sheet-width;
  14. height: $action-sheet-width;
  15. }
  16. .action-sheet-wrapper {
  17. @include position(0, 0, 0, 0);
  18. @include margin(auto);
  19. @include transform(translate3d(0, 100%, 0));
  20. position: absolute;
  21. z-index: $z-index-overlay-wrapper;
  22. display: block;
  23. width: $action-sheet-width;
  24. max-width: $action-sheet-max-width;
  25. pointer-events: none;
  26. }
  27. .action-sheet-button {
  28. width: $action-sheet-width;
  29. }
  30. .action-sheet-container {
  31. display: flex;
  32. flex-flow: column;
  33. justify-content: flex-end;
  34. height: 100%;
  35. max-height: 100%;
  36. }
  37. .action-sheet-group {
  38. overflow: scroll;
  39. flex-shrink: 2;
  40. pointer-events: all;
  41. }
  42. .action-sheet-group-cancel {
  43. overflow: hidden;
  44. flex-shrink: 0;
  45. }