You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

48 lines
939 B

.time-picker-container {
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px;
background-color: white;
border: 1px solid #ccc;
border-radius: 5px;
width: 250px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
.time-box-wrapper {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 5px;
}
.time-box-button {
padding: 5px 10px;
margin: 2px 0;
background-color: #ddd;
border: none;
border-radius: 3px;
cursor: pointer;
}
.time-box-display {
font-size: 18px;
padding: 5px;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 3px;
min-width: 30px;
text-align: center;
}
.time-picker-confirm-button {
margin-top: 10px;
padding: 5px 15px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}