newRecipe.css 588 B

123456789101112131415161718192021222324252627282930
  1. #addRecipe{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. padding-bottom: 50px;
  7. }
  8. /* #addRecipe .choosable{
  9. background: rgb(240, 252, 255);
  10. } */
  11. #newRecipeContent{
  12. display: flex;
  13. width: 100%;
  14. padding: 10px;
  15. }
  16. #recipeChoices{
  17. width: 40%;
  18. border-right: 1px solid rgb(255, 99, 107);
  19. height: 100%;
  20. overflow-y: auto;
  21. padding: 10px;
  22. }
  23. #newRecipeData{
  24. width: 60%;
  25. padding: 10px;
  26. }