123456789101112131415161718192021222324252627282930313233 |
- .invoice {
- background-color: #f9f9f9;
- height: calc(100vh - 44px);
- &-navbar {
- &-right {
- color: #fff;
- margin-right: 30rpx;
- }
- }
- &-content {
- margin-top: 44px;
- }
- &-list {
- padding: 30rpx;
- &-item {
- background-color: #fff;
- padding: 40rpx 30rpx;
- margin-bottom: 20rpx;
- border-radius: 6rpx;
-
- &-left {
-
- &-item {
- display: flex;
- margin-bottom: 10rpx;
- }
- }
- }
- }
- }
|