fix:visibilty for forms

This commit is contained in:
0Pranav 2019-10-15 16:45:24 +05:30
parent 2f9ef85614
commit 7c27436d21

View File

@ -1,4 +1,6 @@
.time-slot {
flex-grow: 1;
flex : 0 0 calc(16.66% - 20px);
margin-bottom: 2em;
margin-left: 0.5em;
margin-right: 0.5em;
@ -9,9 +11,16 @@
padding: 0.5em 1em;
}
#customer-form{
border-color: black;
}
#customer-form ::placeholder{
color: #ddd;
}
#timeslot-container{
display: grid;
grid-template-columns: repeat(6, 1fr);
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.time-slot:hover {