base.scss 419 B

123456789101112131415161718192021222324
  1. @import "element-variables.scss";
  2. @import "transition.scss";
  3. $box-padding-size: 25px;
  4. $advanced-title-height: 50px;
  5. $border-color: rgb(216, 220, 229);
  6. .page-close-box {
  7. position: absolute;
  8. background: #0092FF;
  9. transform: rotate(45deg);
  10. height: 50px;
  11. width: 50px;
  12. right: -25px;
  13. top:-25px;
  14. text-align: center;
  15. .el-button {
  16. transform: rotate(-45deg);
  17. color: white;
  18. margin-top: 20px;
  19. }
  20. }