Open gdedi001 opened 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; } }
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