I was able to create a horizontal navigation menu using below code:
@media screen and (max-width: 749px) {
.footer-block__details-content {
display: flex;
padding-right: auto;
justify-content: center;
align-items: center;
This displays fine in desktop view. However, in Mobile Phone view it shows as below:
How do I fix this?
