historyOrder.wxss 486 B

12345678910111213141516171819202122232425262728
  1. .orderContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. }
  6. .dataSelect {
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: space-between;
  10. width: 90%;
  11. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  12. padding: 2% 3%;
  13. border-radius: 3%;
  14. }
  15. .order{
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. width: 93%;
  20. }
  21. .orderItem {
  22. width: 100%;
  23. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  24. border-radius: 1%;
  25. }