Skip to main content

Slightly improved quicklink stacking for mobile NOT BROADLY TESTED

add between styles brackets in advanced design styles 

NOT BROADLY TESTED. only tried it on two sites. if you do not test it on mobile after adding it, you were warned so idk what you want from me.

@media (max-width: 600px) {
  .amplify-quicklinks-container .container header {
     display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0.8rem 0;
  text-align: center;
}
}

or left aligned row 

flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    width: 100%;
  }