123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* pages/components/wxbutton/wxbutton.wxss */
- .container {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 999;
- padding-top: 100rpx;
- box-sizing: border-box;
- background: #fff;
- }
- .text {
- width: 100%;
- margin: auto;
- font-size: 28rpx;
- color: #333;
- line-height: 42rpx;
- text-align: center;
- }
- .btn {
- border: none;
- padding: 0;
- margin: 0;
- outline: none;
- width: 100%;
- }
- .btn::after {
- content: "";
- border: none;
- }
- .btn::before {
- content: "";
- border: none;
- }
- .btn:active {
- opacity: 1;
- background: transparent;
- }
|