myButton.wxss 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* components/myButton/myButton.wxss */
  2. .my-button {
  3. width: 225rpx !important;
  4. font-size: 30rpx !important;
  5. font-weight: normal;
  6. border-radius: 60rpx;
  7. }
  8. .my-large-button {
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. width: 225rpx !important;
  13. height: 120rpx;
  14. font-size: 30rpx !important;
  15. font-weight: normal;
  16. border-radius: 30rpx;
  17. }
  18. .my-mini-button {
  19. font-size: 25rpx !important;
  20. font-weight: normal;
  21. border-radius: 50rpx;
  22. }
  23. .my-primary-disabled-button {
  24. color: #DDEEEE !important;
  25. background: #30B0B0 !important;
  26. }
  27. .my-default-disabled-button {
  28. color: #909090 !important;
  29. background: #DDDDDD !important;
  30. }
  31. .my-primary-hover-button {
  32. color: #CCDDDD !important;
  33. background: #008080 !important;
  34. }
  35. .my-default-hover-button {
  36. color: #303030 !important;
  37. background: #CCCCCC !important;
  38. }