Newer
Older
smartKitchenMiniProgram / pages / shoppingMall / shoppingMall.wxss
dutingting on 22 Nov 2022 694 bytes 1.0.1
/* pages/shoppingMall/shoppingMall.wxss */
page {
  padding: 20rpx 0 50rpx 0;
	/* min-height: 100%; */
	height: 100%;
	background: linear-gradient(180deg, #fefeff 0%, #a8cee1 50%, #fefeff 100%);
}
.shopping-mall {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 80%;
}
.title {
	width: 80%;
	font-size: 42rpx;
	font-weight: 600;
	margin-bottom: 30rpx;
	text-align: center;
}
.click-me {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 220rpx;
	height: 32rpx;
	padding: 20rpx 28rpx;
	background-color: #2483b3;
	color: #fff;
	font-weight: 600;
	font-size: 30rpx;
	border-radius: 20rpx;
	margin-top: 30rpx;
}