diff --git a/examples/hello-uniapp/common/uni.css b/examples/hello-uniapp/common/uni.css index b7a82cc93fe2344c8891792d7496758be7c3a89c..b20ccf5945fa65b3478027a37dcfcbb1fd97544f 100644 --- a/examples/hello-uniapp/common/uni.css +++ b/examples/hello-uniapp/common/uni.css @@ -817,4 +817,48 @@ radio-group label, checkbox-group label{ line-height:1.6; font-size:28upx; height:150upx; +} + +/* tab bar */ +.uni-tab-bar { + display: flex; + flex: 1; + flex-direction: column; + overflow: hidden; + height: 100%; +} + +.uni-tab-bar .list { + width: 750upx; + height: 100%; +} + +.uni-swiper-tab { + width: 100%; + white-space: nowrap; + line-height: 100upx; + height: 100upx; + border-bottom: 1px solid #c8c7cc; +} + +.swiper-tab-list { + font-size: 30upx; + width: 150upx; + display: inline-block; + text-align: center; + color: #555; +} + +.uni-tab-bar .active { + color: #007AFF; +} + +.uni-tab-bar .swiper-box { + flex: 1; + width: 100%; + height: calc(100% - 100upx); +} + +.uni-tab-bar-loading{ + padding:20upx 0; } \ No newline at end of file diff --git a/examples/hello-uniapp/components/load-more.vue b/examples/hello-uniapp/components/load-more.vue index e769042e56ab42178d4a3a49b56fda18fa3db2ee..8fad4010aa5c7ce40abb832afe73770cff147a60 100644 --- a/examples/hello-uniapp/components/load-more.vue +++ b/examples/hello-uniapp/components/load-more.vue @@ -74,7 +74,7 @@ } .loading-text { - font-size: 15px; + font-size: 28upx; color: #777777; } diff --git a/examples/hello-uniapp/pages/template/tabbar/tabbar.vue b/examples/hello-uniapp/pages/template/tabbar/tabbar.vue index 61ee6c58fc95c9173652b3414512f7b41d59b13e..79787cff7a12059476d10a0258c4f44888689922 100644 --- a/examples/hello-uniapp/pages/template/tabbar/tabbar.vue +++ b/examples/hello-uniapp/pages/template/tabbar/tabbar.vue @@ -1,6 +1,6 @@ + \ No newline at end of file