Home > Blockchain >  I am trying to make my social items responsive but it is not working how to fix it any suggestions p
I am trying to make my social items responsive but it is not working how to fix it any suggestions p

Time:12-09

https://faizan-ul-hasnain.github.io/Resume-Project-/
This is my github file plz check this how to fix it 

image

CodePudding user response:

Change the display flex to display block might work for you

@media only screen and (max-width: 535px) {
.group_3 {
    display: block;//change flex to block
}
//you can give some margin to the socials from top for
good looking
.group_3 .socials {
    margin-top: 40px;
}
}
  • Related