| 12345678910111213141516171819202122232425262728293031 |
- .sidebar{
- display: flex;
- width: 18vw;
- height: 100vh;
- box-sizing: border-box;
- padding: 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;
- }
|