jemilac / f1-3-c2p1-colmar-academy

0 stars 0 forks source link

Mobile nav #2

Open gdedi001 opened 7 years ago

gdedi001 commented 7 years ago

Implement the following CSS media query to fix your issue. https://github.com/jemilac/f1-3-c2p1-colmar-academy/blob/master/capstone/resources/css/style.css#L135-L141


@media only screen and (max-width: 1600px) {
  .mobile-image {
    display: none;
    }
}

@media only screen and (max-width: 480px) {
  .desktop-image {
    display: none;
    }
  .mobile-image {
    display: block;
    width: 100%;
    height: auto;
  }
}