Design comparison
Solution retrospective
Hi Everyone!. This is the first solution that I have uploaded. Any feedback is welcomed. I could not get the words to align exactly as the solution. Any advice on how to do that will be great.
Community feedback
- @pikapikamartPosted over 3 years ago
Hey, great work on your first solution here in FEM!
The layout is a bit small in desktop and the mobile state, the top part is can't be seen.
So a couple of suggestions would be;
-
Do not use
height: 100vh
. I always recommend "not" using this since this will limit a selector based on the remaining viewport's height. Like in yourcontainer
selector, that is declared, so whenever I fired dev tools at the bottom, your layout is pushed to the top and gets cuts off. I advise not using this, instead usemin-height: 100vh
and make the element just use another sizing unit like rems. -
Buttons. On your button, maybe changing the default border. Since default border doesn't really look that good, well for me. But that is preference. (Make it border white :>>)
-
Wrong font. I think you are using a wrong font here, the original is using a sans-serif of type and yours is a serif. Might want to check that one out.
-
Huge padding. In your
container
selector. You are using too much padding and if you inspected it, you will see that the width of thecontainer
is very small and does not really captures the element inside it while the padding is very big. -
Breakpoint. When resizing, your element gets cut off by the viewport's width thus creating a horizontal scrollbar which we really avoid. Maybe making a custom layout at about 600px going down to 375px. Creating those breakpoint is really important and dedicating their respective layout to prevent unwanted effects will be really good.
If you need help on those mentioned above, just drop your query here okay. But still, you did a good job^
0@PiperRcPosted over 3 years ago@pikamart Thank you for your reply! I will go over them and make the revelant changes.Thank you again.
0@PiperRcPosted over 3 years ago@pikamart when I make changes to the gihub code, does it update here, do I have to upload a separate solution?
0@pikapikamartPosted over 3 years ago@PiperRc hey, it will automatically update your website in here. As long as you push those, your website will be updated
0 -
- @PiperRcPosted over 3 years ago
On the design comparison , the 3rd column is off. But the preview on the website is not.Any advice on why that is
0
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