This commit is contained in:
Barrett Ruth 2025-11-29 00:54:06 -05:00
parent 27b778896d
commit 24d6d2a757
5 changed files with 69 additions and 77 deletions

View file

@ -29,11 +29,23 @@
text-decoration: none;
cursor: pointer;
}
@media (max-width: 768px) {
@media (max-width: 1024px) {
footer {
flex-direction: column;
gap: 15px;
}
.footer-links-left,
.footer-links-right {
gap: 15px;
}
}
@media (max-width: 640px) {
.footer-links-left,
.footer-links-right {
flex-direction: column;
gap: 5px;
gap: 10px;
align-items: center;
}
}
</style>