index.scss 336 B

12345678910111213141516
  1. .tabbar{
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-around;
  5. background-color: #000;
  6. // background-color: red;
  7. padding-bottom: constant(safe-area-inset-bottom);
  8. /* 兼容 iOS < 11.2 */
  9. padding-bottom: env(safe-area-inset-bottom);
  10. }
  11. .tabbar-item{
  12. color: #fff;
  13. padding-top: 25px;
  14. }