| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* components/myButton/myButton.wxss */
- .my-button {
- width: 250rpx !important;
- font-size: 30rpx !important;
- font-weight: normal !important;
- border-radius: 40rpx !important;
- }
- .my-large-button {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 0rpx;
- width: 200rpx !important;
- height: 100rpx !important;
- font-size: 30rpx !important;
- border-radius: 20rpx !important;
- font-weight: normal !important;
- }
- .my-mini-button {
- font-size: 25rpx !important;
- font-weight: normal !important;
- border-radius: 20rpx !important;
- }
- .my-primary-disabled-button {
- color: #DDEEEE !important;
- background: #30B0B0 !important;
- }
- .my-default-disabled-button {
- color: #909090 !important;
- background: #DDDDDD !important;
- }
- .my-primary-hover-button {
- color: #CCDDDD !important;
- background: #008080 !important;
- }
- .my-default-hover-button {
- color: #303030 !important;
- background: #CCCCCC !important;
- }
|