Blame view

components/tabbar/tabbar.scss 753 Bytes
4dfe89e4   monkeyhouyi   初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  .page-total{
  		position: fixed;
  		left: 0;
  		bottom: 0;
  		width: 100%;
  		//height: 100rpx;
  	}
  	.tab-list{
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		width: 100%;
  		background-color: #FFFFFF;
  		padding-top: 15rpx;
  		padding-bottom: constant(safe-area-inset-bottom);
  		padding-bottom: env(safe-area-inset-bottom);
  		border-radius: 40rpx 40rpx 0 0;
  		box-shadow: 0px 0px 20rpx 1rpx rgba(206, 206, 206, 0.32);
  		.list{
  			display: flex;
  			flex-direction: column;
  			align-items: center;
  			justify-content: center;
  			width: 20%;
  			height: 100rpx;
  			image{
  				width: 48rpx;
  				height: 48rpx;
  			}
  			text{
  				color: #AAADB6;
  				font-size: 24rpx;
  				margin-top: 10rpx;
  			}
  			.action{
  				color: #0FBB59;
  			}
  		}
  	}