Typemaster prelaunch HTML/SCSS

Solution retrospective
I'm still not 100% sure about the mobile solution padding.
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@BurritoDoggie
Hello itsagift!
You did a good job with keeping every thing close to the original! I love it when people add extra effects. I love your effects when you press the 'pre-order now' button. I don't even know how to do that. And you also did wonderful with the 'mobile solution padding'. I'm actually giving feedback on a small screen.
Keep Coding!
(•‿•)
Marked as helpful - @ixtk
- from about 1040px when scaling, the 2 images are stretching and losing aspect ratio. Consider using
object-fit: cover
- children in
.bottom
have no margin next to each other. The texts almost touch each other. Userow-gap
orcolumn-gap
for space in between children if your layout is either flex or grid - you could have just used padding on
img
for those icons and not nest them indiv
- you could have displayed
.bottom
asgrid
the whole time. There's no need to display it as flex, just have either 2 or 1 column depending on the size of the screen. - the images that are snapped to the side aren't supposed to have
border-radius
the side they're touching browser edge on
The way I did the snapping part is gave section container fixed padding, like
24px
and then usedmargin-[left/right]: -24px
on the image.Don't forget to check the report
Marked as helpful - from about 1040px when scaling, the 2 images are stretching and losing aspect ratio. Consider using
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