| 12345678910111213141516171819202122232425262728 |
- #editRecipe{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- }
- #editRecipeIngList{
- width: 100%;
- max-height: 75%;
- overflow-y: auto;
- }
- .editRecipeIng{
- background: rgb(0, 27, 45);
- color: white;
- width: 90%;
- border-radius: 5px;
- text-align: center;
- padding: 5px;
- margin: 5px auto;
- position: relative;
- }
- .editRecipeIng button{
- position: absolute;
- right: 5px;
- }
|