1 Group

Viewing 1 group

Viewing 1 group

document.addEventListener("DOMContentLoaded", function() { function resizeSidebarToTable() { var sidebar = document.querySelector(".bb-grid__aside, .bb-grid__column--aside"); var leaderboard = document.querySelector(".gamipress-leaderboard table"); if (sidebar && leaderboard) { var tableWidth = leaderboard.scrollWidth + 20; sidebar.style.flex = "0 0 " + tableWidth + "px"; sidebar.style.maxWidth = tableWidth + "px"; sidebar.style.minWidth = tableWidth + "px"; leaderboard.style.width = "100%"; leaderboard.style.minWidth = tableWidth + "px"; var cells = leaderboard.querySelectorAll("th, td"); cells.forEach(function(cell) { cell.style.whiteSpace = "nowrap"; }); } } resizeSidebarToTable(); window.addEventListener("resize", resizeSidebarToTable); });