sticky footer

This commit is contained in:
MCHost
2025-07-03 22:28:40 -04:00
parent e4f6a338b3
commit 9bffacd722

View File

@ -21,6 +21,14 @@
.hamburger.active .bar:nth-child(3) { .hamburger.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg); transform: translateY(-8px) rotate(-45deg);
} }
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex-grow: 1;
}
</style> </style>
</head> </head>
@ -132,8 +140,7 @@
document.querySelector('.mobile-nav-container').classList.toggle('hidden'); document.querySelector('.mobile-nav-container').classList.toggle('hidden');
}); });
</script> </script>
<script src="js/app.js"></script> <script src="js/app.js"></script>
<script src="https://my-mc.link/js/main.js"></script> <script src="https://my-mc.link/js/main.js"></script>
</body> </body>