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
    Jose 90

    @josenegrete123

    Posted

    You could have added the span html element to the instructions list to create that bold lettering on the first few words. For example: <span>Beat the eggs</span> to create Beat the eggs. Besides that, the rest looks good. Maybe just increase the size to better match the design.

    Marked as helpful

    0
  • P
    Jose 90

    @josenegrete123

    Posted

    Great job with your work! Instead of using a grid to display the items, I would personally use a flexbox. The reason being that grids are mainly used to display data. But besides that everything here looks great!

    0
  • Dave 40

    @Guitar8634

    Submitted

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

    I am most proud of learning how to use the Figma File to create a more accurate representation of the design.

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

    Some challenges included figuring out how to justify and align all the elements within the card correctly. I solved these using

    display: grid;
    justify-content: center;
    align-items: center;
    

    position: relative;

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

    I am curios how other people solved the indenting of the title and paragraph in the hover state.

    P
    Jose 90

    @josenegrete123

    Posted

    For the indenting in the hover state, use the :hover pseudo class to mess with the hover state of the object.

    Here is some code example using your title class: .title:hover { color: yellow; cursor: pointer; }

    This way when you hover over the title, only the color changes and it doesn't indent itself.

    0
  • P

    @samritbasnet

    Submitted

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

    I am happy to finish this project although it was simple project learnt some styling syntax and flexbox and lot more.

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

    I had trouble with styling the class component in center thanks to help of community and online resource i overcame it.

    P
    Jose 90

    @josenegrete123

    Posted

    Oh sorry my comment got cut off. I would migrate the style html tag into a separate CSS file. So that the html won't be as bloated and would just be pure html. That way you can reduce confusion when changing around the style of the project.

    Marked as helpful

    0
  • P

    @samritbasnet

    Submitted

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

    I am happy to finish this project although it was simple project learnt some styling syntax and flexbox and lot more.

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

    I had trouble with styling the class component in center thanks to help of community and online resource i overcame it.

    P
    Jose 90

    @josenegrete123

    Posted

    I would try to migrate the

    0