formatting

This commit is contained in:
Sundog Jones 2024-09-09 12:09:05 -04:00
parent 57f1823b7a
commit 627f316cb1

View File

@ -164,6 +164,11 @@
#media_item_edl_list_add_insert_button {
width: 3vw;
}
#current_day_indicator {
display: inline-block;
width: 300px;
}
</style>
</head>
<body>
@ -622,7 +627,7 @@
if (i === 0) {
// first column of schedule, set up the grid
const current_day_indicator = document.querySelector("#current_day_indicator");
current_day_indicator.innerHTML = `Schedule for <strong>${day_of_schedule.toDateString()}</strong>`;
current_day_indicator.innerHTML = `<center>Schedule for <strong>${day_of_schedule.toDateString()}</strong></center>`;
current_day_indicator.setAttribute("data-day", day_of_schedule.toISOString());
// set up previous/next buttons
document.querySelector('#previous_day_button').addEventListener("click", previous_day_schedule);