a zip code crypto-currency system good for red ONLY

backdrop.scss 469B

123456789101112131415161718192021222324252627
  1. @import "../../themes/ionic.globals";
  2. // Backdrop
  3. // --------------------------------------------------
  4. /// @prop - Color of the backdrop
  5. $backdrop-color: #000 !default;
  6. ion-backdrop {
  7. @include position(0, null, null, 0);
  8. position: absolute;
  9. z-index: $z-index-backdrop;
  10. display: block;
  11. width: 100%;
  12. height: 100%;
  13. background-color: $backdrop-color;
  14. opacity: .01;
  15. transform: translateZ(0);
  16. }
  17. ion-backdrop.backdrop-no-tappable {
  18. cursor: auto;
  19. }