【uniapp】 uniapp 修改tabBar图标大小和navigationBar字体大小

app.vue文件中修改

//导航栏字体
.uni-page-head .uni-page-head__title{
    
    
	font-size: 30rpx !important;
}
// tab图标
.uni-tabbar .uni-tabbar__icon {
    
    
	width: 25rpx !important;
    height: 25rpx !important;
}

大佬地址:https://blog.csdn.net/AAAXiaoApple/article/details/129705349

猜你喜欢

转载自blog.csdn.net/m0_49714202/article/details/135424822