Unify phase titles and improve readability on beige theme

This commit is contained in:
2026-02-02 14:59:34 +01:00
parent dfc48cbe4a
commit 2ed05e45c3
3 changed files with 39 additions and 5 deletions

View File

@@ -275,7 +275,10 @@ function renderResults() {
`;
tbody.appendChild(row);
});
container.appendChild(table);
const frame = document.createElement("div");
frame.className = "results-frame";
frame.appendChild(table);
container.appendChild(frame);
container.querySelectorAll(".clickable-thumb").forEach(img => {
img.addEventListener("click", () => openLightbox(img.src, img.alt));
});