myInvoice.scss 488 B

123456789101112131415161718192021222324252627282930313233
  1. .invoice {
  2. background-color: #f9f9f9;
  3. height: calc(100vh - 44px);
  4. &-navbar {
  5. &-right {
  6. color: #fff;
  7. margin-right: 30rpx;
  8. }
  9. }
  10. &-content {
  11. margin-top: 44px;
  12. }
  13. &-list {
  14. padding: 30rpx;
  15. &-item {
  16. background-color: #fff;
  17. padding: 40rpx 30rpx;
  18. margin-bottom: 20rpx;
  19. border-radius: 6rpx;
  20. &-left {
  21. &-item {
  22. display: flex;
  23. margin-bottom: 10rpx;
  24. }
  25. }
  26. }
  27. }
  28. }