show-hide-when.scss 363B

1234567891011121314151617
  1. @import "../../themes/ionic.globals";
  2. // Show / Hide When
  3. // --------------------------------------------------
  4. // Applied by the showWhen directive
  5. .hidden-show-when {
  6. // scss-lint:disable ImportantRule
  7. display: none !important;
  8. }
  9. // Applied by the hideWhen directive
  10. .hidden-hide-when {
  11. // scss-lint:disable ImportantRule
  12. display: none !important;
  13. }