Skip to main content

Logo Height

Put in Advanced - Sidewide

/*SUGGESTED VERSION*/

<style>

.amplify-header .container h1 img {
  height: auto;
  width: 330px; /* default for desktop */
  padding: 20px 0;
}

@media (max-width: 64rem) {
  .amplify-header .container h1 img {
    height: auto;
    width: 150px; /* smaller logo on mobile */
    padding: 10px 0;
  }

}

</style>