Horizontal footer navigation menu overlaps - Dawn Theme

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?

Hi @dasaint208 , can you share your store url?

www.jingscuisine.com

Thanks!

@dasaint208 , go to your section-footer.css file and add the following code :

@media (max-width:749px){
.footer-block__details-content {
    
    justify-content: space-around !important;
    
}

}

if this helped you please like and mark as solution.

It worked. Thank you!!!