ingredientDetails.css 554 B

12345678910111213141516171819202122232425262728
  1. #ingredientDetails{
  2. flex-direction: column;
  3. align-items: center;
  4. width: 100%;
  5. }
  6. #ingredientDetails label{
  7. font-size: 20px;
  8. text-align: center;
  9. margin: 0;
  10. }
  11. #ingredientDetails label p{
  12. font-size: 30px;
  13. font-weight: bold;
  14. padding: 10px;
  15. }
  16. #subIngredientList{
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. text-align: center;
  21. list-style: none;
  22. overflow: auto;
  23. max-height: 150px;
  24. width: 75%;
  25. }