fix: align social links in footer

This commit is contained in:
2025-07-20 12:37:14 +04:00
parent 685c80de1f
commit 47ff86dfa0
+6 -2
View File
@@ -1341,11 +1341,15 @@ img {
} }
.footer-social { .footer-social {
display: flex; display: grid;
justify-content: center; grid-template-columns: repeat(3, 1fr);
justify-items: center;
align-items: center; align-items: center;
margin-bottom: 25px; margin-bottom: 25px;
gap: 20px; gap: 20px;
max-width: 300px;
margin-left: auto;
margin-right: auto;
} }
.footer-social a { .footer-social a {