index.scss 675 B

12345678910111213141516171819202122232425262728293031323334
  1. @use "./pub.scss" ;
  2. @use "./lanhu.scss" ;
  3. @use "./color.scss" as *;
  4. .button--primary1{
  5. color: #fff !important;
  6. background: linear-gradient(135deg, #2FB0FF 0%, #B863FB 100%) !important;
  7. cursor: pointer;
  8. border:none !important;
  9. border-radius: 4px;
  10. &.disabled{
  11. pointer-events:none;
  12. background: #909399 !important;
  13. cursor: not-allowed;
  14. }
  15. &.is-disabled{
  16. pointer-events:none;
  17. background: #909399 !important;
  18. cursor: not-allowed;
  19. }
  20. }
  21. .button--white{
  22. color: #333333 !important;
  23. background: #FFFFFF !important;
  24. border: 1px solid #CCCCCC!important;
  25. border-radius: 4px;
  26. &.disabled{
  27. pointer-events:none;
  28. opacity: .6;
  29. }
  30. }