File size: 426 Bytes
8c694a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Mobile responsive adjustments
function adjustForMobile() {
    if (window.innerWidth < 768) {
        document.querySelectorAll('.timeline-pill').forEach(pill => {
            pill.style.gridColumn = '1 / -1';
        });
    }
}

// Initialize
window.addEventListener('DOMContentLoaded', () => {
    adjustForMobile();
    feather.replace();
});

// Handle window resize
window.addEventListener('resize', adjustForMobile);