uniapp 微信小程序按钮去除边线

uniapp yekong 1097℃

uniapp 微信小程序按钮去除边线


<button class="justify-center button" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">
					<image src="https://piaolala.oss-cn-beijing.aliyuncs.com/static/local/16383285613051081798.png"
						class="image_2" />
					<text class="text_1">微信授权登录</text>
				</button>

				.button {
					margin-top: 358rpx;
					padding: 24rpx 0 23rpx;
					color: rgb(0, 0, 0);
					font-size: 24rpx;
					width: 690rpx;
					line-height: 28rpx;
					white-space: nowrap;
					border: none;
					background-color: rgb(224, 243, 228);
					border-radius: 50rpx;

					.image_2 {
						width: 55rpx;
						height: 55rpx;
					}

					.text_1 {
						margin-left: 18rpx;
						align-self: center;
					}
				}

				.button::after {
					border: none;
				}
喜欢 (0)