Design comparison
Solution retrospective
Hey everyone, I built this photosnap site with react and styled-components. Mainly used grid layouts. Any feedback is appreciated !
Community feedback
- @MarkoNikolajevicPosted over 3 years ago
Hi trudihub, you did a great job on this challenge! I like it!
Your code is clear and clean, I just have a feedback for you. On laptops view the text inside divs with
description
class is squeezed. I think is because you set a media queries too early@media (min-width: 1024px)
.Anyway you did a great job!
Keep on coding and have fun!
1@trudihubPosted over 3 years ago@MarkoNikolajevic Yeah, you're right, thanks for the feedback! I didn't pay close enough attention to resizing windows on desktop devices. How would you adapt the breakpoints to solve this ? Kind regards!
0@MarkoNikolajevicPosted over 3 years ago@trudihub I usually use a media query for laptops and one for larger screens. For example
@media (min-width: 1024px) // laptop
and@media (min-width: 1440px) // larger screens
.1
Please log in to post a comment
Log in with GitHubJoin 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