12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* 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;
- }
- .btn::after {
- content: "";
- border: none;
- }
- .btn::before {
- content: "";
- border: none;
- }
- .btn:active {
- opacity: 1;
- background: transparent;
- }
|