| 1234567891011121314151617181920212223242526 |
- #newIngredient{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- }
- #newIngredient label{
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- background: white;
- padding: 10px;
- margin: 2px;
- color: black;
- }
- #newIngredient .button{
- margin: 15px auto;
- }
- #newIngredient h2{
- text-align: center;
- margin-bottom: 25px;
- }
|