orderDetails.css 490 B

12345678910111213141516171819202122232425262728
  1. #orderDetails{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. .orderDiv{
  8. width: 50%;
  9. }
  10. .subOrderDiv{
  11. display: flex;
  12. justify-content: space-between;
  13. }
  14. #orderIngredients{
  15. width: 90%;
  16. overflow: auto;
  17. }
  18. #orderTotalPrice{
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. font-size: 25px;
  23. font-weight: bold;
  24. }