Latest comments
- P@Stash443Submitted 5 days ago
- @Shahd-AbdalghnySubmitted 10 days ago@NecronytePosted 9 days ago
Code looks good but i think the box shadows are wrong. box-shadow: 0 2px 8px rgba(0,0,0,0.1); is better.
0 - @mohamed8eoSubmitted about 1 month ago
- P@ecarlsteSubmitted 13 days agoWhat are you most proud of, and what would you do differently next time?
I used a mobile first workflow this time, creating the mobile version first and then adding
sm:px-[40px]
for switching to tablet/desktop after I'd fully completed the mobile page.During my conversion over to desktop I wasn't setting the mobile values that were now required since I was overriding them for small and larger screens. Next time I'll be sure to add those values when I'm adding the
sm
conditional classes.I also tried setting up the Google fonts used straight in tailwind rather than loading them using Next.js. I like this better I think since it keeps all of the styling in one place potentially. I'm going to keep using this technique unless there is a good reason not to.
What challenges did you encounter, and how did you overcome them?My challenge this time was figuring out why my UI wasn't scaling back down correctly to mobile sizes once I'd scaled up to desktop size.
Took me a bit to figure out that because I wasn't specifying a default value, it wasn't switching correctly at the size breakpoints.
So, for instance rather than having:
<div className="sm:rounded-3xl" />
I needed to use:
What specific areas of your project would you like help with?<div className="rounded-none sm:rounded-3xl" />
I'd like help potentially organizing the breakdown of React components that I chose to use in this project to see if there are potentially cleaner ways to organize it.
- @RemyJuanesSubmitted 18 days agoWhat are you most proud of, and what would you do differently next time?
I'm proud of succeeding this challenge without the Figma file.
What challenges did you encounter, and how did you overcome them?The biggest challenge was to use only pictures as references for this exerice.
What specific areas of your project would you like help with?Accessibility