style: make custom share list horizontal on mobile screens

This commit is contained in:
2026-07-20 17:48:13 +07:00
parent 7d937a71f8
commit 71c8df8d79
@@ -92,6 +92,12 @@
.custom-share-list {
list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; align-items: flex-start;
}
@media screen and (max-width: 767px) {
.custom-share-list {
flex-direction: row; gap: 10px;
}
}
.custom-share-list li a {
display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; border: 1px solid #111; text-decoration: none; transition: all 0.2s;
}