29 lines
446 B
SCSS
29 lines
446 B
SCSS
.submit-btn {
|
|
width: 332rpx;
|
|
height: 80rpx;
|
|
background: #1580ff;
|
|
border-radius: 8rpx;
|
|
|
|
font-weight: 400;
|
|
font-size: 32rpx;
|
|
color: #ffffff;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.cancel-btn {
|
|
width: 332rpx;
|
|
height: 80rpx;
|
|
background: #f5f5f5;
|
|
border-radius: 8rpx;
|
|
|
|
font-weight: 400;
|
|
font-size: 32rpx;
|
|
color: #1580ff;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|