| 12345678910111213141516171819202122232425262728293031323334 |
- @use "./pub.scss" ;
- @use "./lanhu.scss" ;
- @use "./color.scss" as *;
- .button--primary1{
- color: #fff !important;
- background: linear-gradient(135deg, #2FB0FF 0%, #B863FB 100%) !important;
- cursor: pointer;
- border:none !important;
- border-radius: 4px;
- &.disabled{
- pointer-events:none;
- background: #909399 !important;
- cursor: not-allowed;
- }
- &.is-disabled{
- pointer-events:none;
- background: #909399 !important;
- cursor: not-allowed;
- }
- }
- .button--white{
- color: #333333 !important;
- background: #FFFFFF !important;
- border: 1px solid #CCCCCC!important;
- border-radius: 4px;
- &.disabled{
- pointer-events:none;
- opacity: .6;
- }
- }
|