[Vuejs]-CSS alignment problem in microsoft edge (on mobile)

0πŸ‘

βœ…

I don’t have the full context, seeing the HTML would be helpful. However, the easiest way to do that would be to flex-center them.

.footer-wrapper a i[class^="cfi"] {
  display: flex;
  align-items: center;
  justify-content: center;
}

Leave a comment