editRecipe.css 597 B

12345678910111213141516171819202122232425262728
  1. #editRecipe{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. #editRecipeIngList{
  8. width: 100%;
  9. max-height: 75%;
  10. overflow-y: auto;
  11. }
  12. .editRecipeIng{
  13. background: rgb(0, 27, 45);
  14. color: white;
  15. width: 90%;
  16. border-radius: 5px;
  17. text-align: center;
  18. padding: 5px;
  19. margin: 5px auto;
  20. position: relative;
  21. }
  22. .editRecipeIng button{
  23. position: absolute;
  24. right: 5px;
  25. }