Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • P
    innitman 130

    @innitman

    Submitted

    What are you most proud of, and what would you do differently next time?

    It took me a while, but I liked learning how to use the dev mode in Figma and translating this to CSS. The key was starting with the HTML.

    What challenges did you encounter, and how did you overcome them?

    I'm a little unsure why min-height: 100% didn't work for the .card-wrapper and I instead needed min-height: 100svh.

    The body has been set to min-height: 100svh so I thought setting min-height on body's child (i.e. .card-wrapper) to 100% would inherit 100svh?

    What specific areas of your project would you like help with?

    I'm a little unsure why min-height: 100% didn't work for the .card-wrapper and I instead needed min-height: 100svh.

    The body has been set to min-height: 100svh so I thought setting min-height on body's child (i.e. .card-wrapper) to 100% would inherit 100svh? Would be grateful for any help!

    Vishal D. 570

    @Hummingcoder

    Posted

    to make min-height: 100% work give .card-wrapper's parent height too ig

    0
  • Divya 50

    @Divya4879

    Submitted

    What are you most proud of, and what would you do differently next time?

    I'm most proud of just simply starting this project, and most particularly this platform. Although I've known about it for a really long time, I'm just starting this now. As for this particular component, I'm proud of making it, within my estimated time range.

    As for the next time onwards, I'll draw a rough wireframe of the component/site before its coding. Coz this time, I had a little rough start coz of not doing it.

    What challenges did you encounter, and how did you overcome them?

    As it was the 1st challenge, this one wasn't hard per say. But as I mentioned earlier, I had a little rough start coz of not making the rough wireframe before going on with the code part.

    I overcame this challenge by screenshooting the desktop version design and then using it for reference, multiple times.

    What specific areas of your project would you like help with?

    I would appreciate reviews and feedback on my code, like the better/shorter/more efficient method for the functionality, and regarding the responsive part of my design as well.

    Vishal D. 570

    @Hummingcoder

    Posted

    Give the card padding of 1rem(16px) or more, and give the card a width of 375px and 90% width for screens smaller than 375px.

    0
  • @Roqais

    Submitted

    What are you most proud of, and what would you do differently next time?

    I’m most proud of achieving a fully responsive design that looks great on all devices, and making efficient use of Tailwind CSS for clean and maintainable code. Next time, I would enhance the project by focusing more on performance optimization and implementing thorough testing to ensure the highest quality and accessibility.

    What challenges did you encounter, and how did you overcome them?

    One of the main challenges I encountered was ensuring the layout was fully responsive across various devices and screen sizes. Initially, I struggled with aligning elements correctly and making sure they adapted well to different viewports. To overcome this, I leveraged the utility classes provided by Tailwind CSS, which allowed me to apply responsive design principles more easily. By using Tailwind's responsive modifiers, I was able to test and adjust the layout quickly for different screen sizes.

    Another challenge was maintaining consistent styling and design across the entire project. With multiple components and sections, it was easy for the design to become fragmented. I tackled this by creating a set of reusable Tailwind CSS classes and components, which helped keep the styling consistent and the codebase more manageable.

    What specific areas of your project would you like help with?

    I could use some assistance in a few critical areas of my project. Firstly, optimizing performance to improve loading times and ensure smooth responsiveness across different devices is a priority. Secondly, ensuring comprehensive accessibility compliance is crucial to make the project usable for all users, including those with disabilities. Lastly, refining the code structure for better maintainability and scalability would greatly benefit the project's long-term management and evolution. These improvements are essential for delivering a high-quality and sustainable solution.

    Vishal D. 570

    @Hummingcoder

    Posted

    The background and text of your Navbar are both the same color.

    Marked as helpful

    0
  • Reuel VJ 80

    @rvj1

    Submitted

    What are you most proud of, and what would you do differently next time?

    This project was a bit difficult but it was able to do it, and I was able to learn a few new HTML elements like the hr etc.

    What specific areas of your project would you like help with?

    I would need help with the table formatting.

    Vishal D. 570

    @Hummingcoder

    Posted

    It is very small, you have given it a width of 200px which is fine for a mobile screen but very small on larger screens.

    Marked as helpful

    0
  • SmartAce 170

    @Smart-Ace-Designs

    Submitted

    What are you most proud of, and what would you do differently next time?

    Using the map function to iterate through an array of social media links to generate the list items in the unordered list.

    It took me a while to realize that I can simply use an unordered list to display the links. Next time, I know to look to the simple solution, for layouts, first.

    What challenges did you encounter, and how did you overcome them?

    Layouts, layouts, and layouts. Just a major hurdle for me...

    What specific areas of your project would you like help with?

    I think I got it mostly covered. The responsive design and the media queries I used might be a bit shaky and need some tweaking.

    Vishal D. 570

    @Hummingcoder

    Posted

    t looks exactly like the design, just increase the font weight of the location text

    Marked as helpful

    0
  • Vishal D. 570

    @Hummingcoder

    Posted

    give padding to the container

    0
  • RKennedyy 100

    @RKennedyy

    Submitted

    What are you most proud of, and what would you do differently next time?

    The main thing I struggled with was making sure the design was responsive and making the div remain in the centre. From researching this I found this can be done by using margin: auto; in CSS.

    Since I haven't covered flexbox yet im sure there are better ways to achieve this.

    What challenges did you encounter, and how did you overcome them?

    The main thing I struggled with was making sure the design was responsive and making the div remain in the centre.

    What specific areas of your project would you like help with?

    Any detailed guides on CSS styling would be appreciated!

    Vishal D. 570

    @Hummingcoder

    Posted

    give container display grid and place-content center to center the card

    0
  • quypq147 150

    @quypq147

    Submitted

    What challenges did you encounter, and how did you overcome them?

    I had stuck at the table at the footer.Maybe i forgot using border-bottom to making line instead of i used to svg line

    Vishal D. 570

    @Hummingcoder

    Posted

    You can remove the bottom line from the table by using tr:last-child { border: none; }

    Marked as helpful

    0