index.less 422 B

1234567891011121314151617181920
  1. .app-mask {
  2. top : 0;
  3. left : 0;
  4. width : 100%;
  5. height: 100%;
  6. &__block {
  7. position : absolute;
  8. top : 0;
  9. left : 0;
  10. width : 100%;
  11. height : 100%;
  12. background-color : rgba(0, 0, 0, .35);
  13. transition-property: opacity;
  14. &:not(.is-show) {
  15. opacity: 0;
  16. }
  17. }
  18. }