Latest solutions
Multi-step form using react.js
#react#react-router#sass/scss#accessibilitySubmitted almost 2 years agoTime tracking dashboard using React-JS and Sass
#react#sass/scss#accessibilitySubmitted over 2 years ago
Latest 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