您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

30 行
462 B

  1. .modal {
  2. cursor: not-allowed;
  3. }
  4. .modal-dialog {
  5. margin-top: 3rem;
  6. margin-bottom: 3rem;
  7. cursor: auto;
  8. }
  9. .modal-content {
  10. padding: 1rem;
  11. &:before,
  12. &:after {
  13. content: "";
  14. display: block;
  15. width: 30px;
  16. height: 3px;
  17. position: absolute;
  18. right: 0;
  19. top: -30px;
  20. pointer-events: none;
  21. background: #fff;
  22. cursor: pointer;
  23. }
  24. &:before {
  25. transform: rotate(45deg);
  26. }
  27. &:after {
  28. transform: rotate(-45deg);
  29. }
  30. }