web client v0.7 (edit dish / visibility / delete/ routes)

This commit is contained in:
2020-10-01 20:21:46 +02:00
parent e242e01320
commit 62702521ee
16 changed files with 605 additions and 24 deletions

View File

@@ -92,3 +92,36 @@
font-size: 14px;
}
}
.editRestaurant-dish {
background-color: #323232;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin: 0px 8px 0px 8px;
padding: 4px;
border-radius: 5px;
h3 {
font-size: 15px;
margin-left: 14px;
}
}
.editRestaurant-dishImg {
height: 60px;
width: 60px;
border-radius: 5px;
background-size: cover;
}
.editRestaurant-dishLeft {
display: flex;
flex-direction: row;
align-items: center;
}
.editRestaurant-dish:hover {
background-color: #3b3b3b;
}