1234567891011121314151617181920212223 |
- $linear-green1: linear-gradient(0deg, #fff6d8 0%, #ffffff 100%);
- $btn-green-linear: linear-gradient(
- 90deg,
- #225036 0%,
- #3b8e5e 45.92%,
- #296141 100%
- );
- $bg-green: #3a8b5c;
- $bg-green2: #337b52;
- @mixin btnStyle($width, $height) {
- display: inline-block;
- background: $btn-green-linear;
- border-radius: 80rpx;
- font-weight: 600;
- color: #fff;
- width: $width;
- height: $height;
- text-align: center;
- line-height: $height;
- // vertical-align: middle;
- }
|