123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .orderItemContainer{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 90%;
- margin-top: 5%;
- margin-bottom: 3%;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- border-radius: 3%;
- padding: 2% 2%;
- }
- .flip-image {transform: scaleX(-1);}
- .dateTime {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- }
- .middle {
- display: flex;
- flex-direction: row;
- align-items: center;
- width: 90%;
- border-bottom: 2rpx dashed #e1e1e2;
- }
- .middle image{
- width: 150rpx;
- height: 150rpx;
- }
- .orderInfo{
- width: 50%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .nozzleAndVolume{
- display: flex;
- width: 60%;
- justify-content: space-between;
- align-items: center;
- margin-top: 3%;
- }
- .nozzle {
- color: #ffffff;
- font-weight: 600;
- font-size: small;
- background-color: #0d7ee7;
- border-radius: 10%;
- }
- .volume {
- color: #0d7ee7;
- font-size: large;
- }
- .bottom {
- display: flex;
- flex-direction: row-reverse;
- align-items: center;
- justify-content: space-between;
- margin-top: 5%;
- width: 90%;
- }
- .amount {
- display: flex;
- flex-direction: row;
- font-weight: 600;
- }
|