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
| /** 引入iconfont.wxss字体样式*/
| @import "../assets/ywicon.scss";
| /* tab-bar icon 样式 */
| .tab-bar-view{
| /* tab-bar的底部背景颜色 */
| background-color: rgb(239, 248, 244);
| position: fixed;
| bottom: 0;
| left: 0;
| right: 0;
| }
| /* tab-bar高度设置 */
| .tab-bar {
| display: flex;
| }
|
| .tab-bar-item {
| flex: 1;
| text-align: center;
| display: flex;
| justify-content: center;
| align-items: center;
| flex-direction: column;
| }
| /* 这里设置图标的大小 */
| .tab-bar-item .iconfont {
| font-size: 36rpx;
| }
| /* tabbar字体大小设置 */
| .tab-bar-item .bar-txt {
| margin-top: 2rpx;
| font-size: 22rpx;
| }
|
|