Madan Sinha
@lazy4gyanAll comments
- @NathLoweSubmitted almost 2 years ago#next#tailwind-css#typescript#zustand#react@lazy4gyanPosted almost 2 years ago
@nathlowe you have done a great job 👏
However, the info step and select plan step must be completed before proceeding to the next step. Adding a required mark or validation error would help users understand this requirement.
Could you also take a look at my solution and share your thoughts on it?
Link - Multi-step form using react.js
Thanks!
Marked as helpful0 - @VictorRego123Submitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
Congratulations 🎉for successfully completing the challenge!
However, I have noticed few things -
- you are using non-sematic tag try to avoid them as much as you can, use semantic html tag.
- avoid defining colors individually to every selector instead use
:root
pseudo-class for defining global variable and utilize it in your selector as a variable.
Marked as helpful0 - @PezzyaceSubmitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
Hi, your UI is looking perfectly fine.
However,I have noticed that your styles are breaking for screen
size < 375px
, due to the yourcommunity-container
andflowing-conversation-container
, useflex-direction:column
for these two containers.And, most of the mobile screens are above 360px so try to use media queries which can includes all the mobile screens, i.e.
@media only screen and (max-width: 767px) { /* Styles for mobile devices and tablets go here */ }
0 - @thenewusSubmitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
Congratulation's buddy 🎉 you have done a fantastic job👏
However, I noticed that you missed to center the
.container
class. You can fix this using flex below is the code..container { display: flex; align-items: center; height: 95vh; }
0 - @keerthi-sogalaSubmitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
Congratulations for completing this challenge!🎉
Following thing's I have notice in your code -
- In add-on page checkbox is not working properly and prices are not dynamically changing according to monthly/yearly plan. You can use the same logic that you have applied on
Select Plan Page
by checking the value ofobj.kind = val;
. - You forget to add assets like images, in your repo that's why image is breaking.
- As you have not added all images in your repo due to which steps are not visible in your stepper as font
color:"white"
At last, I can say you have done a good job👏
0 - In add-on page checkbox is not working properly and prices are not dynamically changing according to monthly/yearly plan. You can use the same logic that you have applied on
- @desalegn12Submitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
Congratulations🎉 for completing the challenge... you have done a good job.
@navnithi your GitHub link is not working.
0 - @navnithiSubmitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
Congratulations, for successfully completing the challenge!
I have a question to ask you, why have you not given the same height to your all three cards?
- If you want to highlight your particular card when it is being hovered over then you should use the
:hover
selector and usescale
property to differentiate your card among remaining two cards. - Avoid unnecessary comments, until the code is difficult to read for others you think.
Marked as helpful0 - If you want to highlight your particular card when it is being hovered over then you should use the
- @BlackpachamameSubmitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
Hi @Blackpachamame, Congratulations for completing this challenge!
Following are the styling issues that I have found -
- Your grow and conversation section top/bottom background images are breaking like they are not completely fitting themselves according to the screen size specially when it comes to desktop screen.
- Same thing happening for footer section and for desktop view I can see a spacing in both sides of the footer section. Try to set width=100% for footer section.
Solution : Set width=100% instead of max-width=100%
Thanks
Marked as helpful0 - @DanialJ-DevSubmitted almost 2 years ago@lazy4gyanPosted almost 2 years ago
@DanialJ-Dev, congratulations on successfully completing the challenge.
I would suggest, try to use semantic html instead of non-semantic html this practice will help you in better SEO, readability of code and greater accessibility.
i.e replace <div >with <section>, wrap your main content with <main></main>.
Marked as helpful1 - @voffeeSubmitted over 2 years ago@lazy4gyanPosted over 2 years ago
Hi @voffee, I would like to highlight regarding responsiveness that instead of making first desktop based responsive site try to make mobile based, as it's easier to implement media queries in mobile based to make desktop based site.
Try to use like
@media (min-width : 700px){}
and rest is all good.Happy coding :-)
1 - @wasswaenockmaleSubmitted over 2 years ago@lazy4gyanPosted over 2 years ago
Hi there, instead of using separate folder for your styling i.e. ./css/style.css place style .css in same folder where your index.html file placed may be this can help.
0 - @catherineisonlineSubmitted almost 3 years ago@lazy4gyanPosted almost 3 years ago
Hi @catherineisonline, Can you advise from where you are learner Dom as I am facing difficulty when implementing them.
0 - @MaryamSheriefSubmitted almost 3 years ago@lazy4gyanPosted almost 3 years ago
@MaryamSherief Can you please advise how you have calculated the pixels of this challenge, you have done a good work.
0 - @mycrochipSubmitted about 3 years ago@lazy4gyanPosted about 3 years ago
Hi @mycrochip, I have checked your site you have done a good work only I want to highlight that your image is not showing 100% in mobile view and when I tried to change the media query of section 2 it is affecting the desktop design not sure what is happening.
If you have answer please let me know.
Marked as helpful0 - @Ryan-TruSubmitted about 3 years ago@lazy4gyanPosted about 3 years ago
@Ryan-Tru Your code is in very detail which helps me to easily understand.
0 - @agusc01Submitted about 3 years ago