| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* components/myButton/myButton.wxss */
- .my-button {
- width: 225rpx !important;
- font-size: 30rpx !important;
- font-weight: normal;
- border-radius: 60rpx;
- }
- .my-large-button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 225rpx !important;
- height: 120rpx;
- font-size: 30rpx !important;
- font-weight: normal;
- border-radius: 30rpx;
- }
- .my-mini-button {
- font-size: 25rpx !important;
- font-weight: normal;
- border-radius: 50rpx;
- }
- .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;
- }
|