components.css 503 B

1234567891011121314151617181920212223242526272829303132
  1. .sidebar{
  2. display: flex;
  3. width: 18vw;
  4. height: 100vh;
  5. box-sizing: border-box;
  6. padding: 25px;
  7. transition: width 0.2s;
  8. overflow: hidden;
  9. }
  10. .sidebarHide{
  11. width: 0;
  12. transition: width 0.2s;
  13. margin: 0;
  14. padding: 0;
  15. overflow: hidden;
  16. }
  17. .sidebarHide *{
  18. width: 0;
  19. transition: width 0.2s;
  20. }
  21. .sidebarHide input{
  22. display: none;
  23. }
  24. #addIngredient{
  25. flex-direction: column;
  26. background: rgb(0, 27, 45);
  27. color: white;
  28. }