topbar.wxss 384 B

1234567891011121314151617181920212223242526
  1. /* components/topbar.wxss */
  2. .topbar {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. z-index: 999;
  7. }
  8. .topbar .back {
  9. width: 36rpx;
  10. height: 36rpx;
  11. position: absolute;
  12. left: 0;
  13. top: 0;
  14. }
  15. .topbar .back-img {
  16. width: 20rpx;
  17. height: 36rpx;
  18. }
  19. .topbar .title {
  20. width: calc(100vw - 60rpx);
  21. height: 100%;
  22. text-align: center;
  23. font-size: 32rpx;
  24. }