Submitted about 5 years agoA solution to the REST Countries API with color theme switcher challenge
REST Countries API with color theme switcher
@qsrahman

Solution retrospective
One problem which I could not solve is in the flag image size for some countries in CountryDetail react component when object-fit: cover is used. For some countries e.g the image is cropped I tried everything but could not succeed resolving it. The relevant CSS is .flag-detail { flex: 1 1 0;
@media (max-width: 1024px) {
width: 100%;
}
img {
display: block;
width: 87.5%;
height: 400px;
/* object-fit: cover; */
@media (max-width: 1024px) {
width: 100%;
height: auto;
}
}
}
Any suggestion/help in this regard will be highly appriciated.
Code
Loading...
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Sami ur Rahman's solution.
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord