.sidebar{ display: flex; width: 18vw; height: 100vh; box-sizing: border-box; padding: 100px 25px; transition: width 0.2s; overflow: hidden; box-shadow: -1px 0px 10px gray; } .sidebarHide{ width: 0; transition: width 0.2s; margin: 0; padding: 0; overflow: hidden; } .sidebarHide *{ width: 0; transition: width 0.2s; } .sidebarHide input{ display: none; } #addIngredient{ flex-direction: column; } #ingredientDetails{ flex-direction: column; align-items: center; } .lineBorder{ width: 100%; border-bottom: 1px solid gray; margin: 25px; } #ingredientDetails > p{ border-radius: 10px; background: gray; color: white; padding: 0 3px; font-size: 14px; } #ingredientDetails label{ font-size: 20px; text-align: center; } #ingredientDetails label p{ font-size: 30px; font-weight: bold; padding: 10px; }