2024-06-12 05:09:32 +01:00
|
|
|
const resizeHeader = () => {
|
|
|
|
const container = document.querySelector("main > .container")
|
|
|
|
const containerWidth = container.scrollWidth
|
|
|
|
const header = document.querySelector(".container.title-container")
|
2024-06-30 12:22:00 +01:00
|
|
|
header.style.minWidth = `${containerWidth}px`
|
2024-06-12 05:09:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener("resize", resizeHeader)
|
|
|
|
resizeHeader()
|