index.wxss 404 B

12345678910111213141516171819202122
  1. /* pages/tabs/index.wxss */
  2. .bordered::before {
  3. content: " ";
  4. position: absolute;
  5. left: 0;
  6. bottom: 0;
  7. right: 0;
  8. height: 2rpx;
  9. border-bottom: 2rpx solid #D9D9D9;
  10. color: #D9D9D9;
  11. transform-origin: 0 100%;
  12. transform: scaleY(0.5);
  13. }
  14. .content {
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. height: 150px;
  19. background-color: #fff;
  20. }