css tweaks

This commit is contained in:
Sundog Jones 2024-09-10 09:29:59 -04:00
parent 4ce1c02d5e
commit c07af0e91d
1 changed files with 6 additions and 1 deletions

View File

@ -75,7 +75,7 @@
}
#upload_target {
position: absolute;
position: fixed;
bottom: 3vh;
left: 0;
width: 25vw;
@ -173,6 +173,7 @@
#schedule_grid {
border: 2px solid white;
width: 100%;
max-height: 52vh;
}
#schedule_grid td {
@ -656,6 +657,10 @@
template_clone.firstElementChild.setAttribute('data-time', hour + ":" + minutes);
grid.appendChild(template_clone);
}
// TODO: fetch schedule info from api and populate, if it exists for the requested day
// TODO: register click handler on schedule cells to open 'add block' dialog
// TODO: register click handler on block cells to open 'edit block' dialog
}
const previous_day_schedule = (e) => {