test.wxss 506 B

12345678910111213141516171819202122232425262728293031323334
  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 1rpx #1e1e1e;
  24. }
  25. .canvas{
  26. width:160rpx;
  27. height:160rpx;
  28. }