Blame view

components/TabBar/TabBar.scss 717 Bytes
c7add6cf   “wangming”   初始版本开发完毕
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
  .page-total{

  		position: fixed;

  		left: 0;

  		bottom: 0;

  		width: 100%;

  		// height: 100rpx;

  		padding-bottom: constant(safe-area-inset-bottom);

  		padding-bottom: env(safe-area-inset-bottom);

  		background-color: #fff;

  	}

  	.tab-list{

  		display: flex;

  		justify-content: space-between;

  		align-items: center;

  		width: 100%;

  		height: 100rpx;

  		background-color: #FFFFFF;

  		.list{

  			display: flex;

  			flex-direction: column;

  			align-items: center;

  			justify-content: center;

  			width: 20%;

  			height: 100rpx;

  			image{

  				width: 48rpx;

  				height: 48rpx;

  			}

  			text{

  				color: #333333;

  				font-size: 24rpx;

  				margin-top: 10rpx;

  			}

  			.action{

  				color: $base;

  			}

  		}

  	}