test.wxss 457 B

123456789101112131415161718192021222324252627282930
  1. view, text {
  2. box-sizing: border-box;
  3. -moz-box-sizing: border-box;
  4. -webkit-box-sizing: border-box;
  5. }
  6. .navbar-wrap {
  7. width: 100%;
  8. }
  9. .navbar-wrap .column {
  10. width: 100%;
  11. height: 100rpx;
  12. display: flex;
  13. flex-direction: row;
  14. align-items: center;
  15. justify-content: space-around;
  16. background: #fff;
  17. top: 0;
  18. left: 0;
  19. z-index: 100;
  20. }
  21. .navbar-wrap .column.fixed {
  22. position: fixed;
  23. border-bottom: solid 1px #1e1e1e;
  24. }