Responsive web landing with SCSS, media queries, and flexbox.

Solution retrospective
I can't see my icons on the live server, and I noticed that it's because I misplaced the SCSS file. However, I can't fix it. What is the correct location for the SCSS file?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @asbhogal
Hi Muharrem,
The reason why your images aren't showing is due to the path - remove the extra
.
at the beginning, as../
takes it one directory up from the root. By changing it to.
it looks for theimages
folder from the root of the project files, not another level up from itAlso, this is a good attempt however you should ideally use
grid
for these columns as it retains the intrinsic value and prevents condensing of the content, which is what's occuring between549px
and630px
. Here's a link explaining the difference and how to use them LinkYou should also avoid setting explicit
width
values as this is causing overflow in your content. Replace this with amax-width
value and awidth: 100%
to ensure anything below that width occupies the fullwidth
of the container.Hope this helps!
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