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
    vcollins1• 410

    @vcollins1

    Posted

    solution matches the design

    accessibility can be improved by adding link tags

    • <a href'="#"><strong> Jules Wyvern</strong></a>
    0
  • P
    vcollins1• 410

    @vcollins1

    Posted

    -HTML code looks good but more semantic tags could be use to give meaning. -To improve accessibility you could add tab functionality to the mark selection section and the game board.

    • When playing the game I notice that your reset button doesn't bring up the dialog.
    0
  • Bogdan Kim• 780

    @semperprimum

    Submitted

    Heyo, everyone!

    I have some questions and I would greatly appreciate your feedback!

    • I'm unsure about a calculator component having an absolute positioning on desktops. Because a user can switch units to imperial and the whole layout would shift. Absolute positioning prevents that.
    • Cards in the "Limitations of BMI" sections also have absolute positioning. I really tried to use grid, but i felt like absolute positioning would be easier and less frustrating to use..
    • The curved lines. I'm not really sure if that's how you use SVGs for the background in React (background-image in the CSS file doesn't work). See App.jsx and /components/Description.jsx to see what I mean
    • /components/Calculator.jsx might be too long? I think i could've handled input change inside of the Input component, same with the radio buttons?
    P
    vcollins1• 410

    @vcollins1

    Posted

    Great solution!!

    0
  • P
    vcollins1• 410

    @vcollins1

    Posted

    Good solution, you could use aria labels to improve accessibility.

    0
  • KrishnaPoddar1• 400

    @KrishnaPoddar1

    Submitted

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

    Using a hamburger nav-bar and changing the view in desktop view

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

    When I change the view in the desktop view the nav-menu is not aligning properly and I think that the view in desktop for the nav-bar is not that good.

    Any other suggestions would be welcomed!!

    P
    vcollins1• 410

    @vcollins1

    Posted

    Good job completing this solution

    0
  • KrishnaPoddar1• 400

    @KrishnaPoddar1

    Submitted

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

    There is quiet a few issues I have a problem finding solution to.

    1. The Form is not being centered vertically. Even after min-height of 100vh is provided.
    2. The Radio box when clicked doesn't change its color. The onclick function's have also been mentioned properly and its been called but the console log when it is clicked doesn't work instead I get a reference error. Similarly for handlebox2 as well. ReferenceError: handlebox1 is not defined

    Any Suggestions/tips would be helpful

    P
    vcollins1• 410

    @vcollins1

    Posted

    To increase the clickable area of your radio boxes you can do something like making the width of the label 100%

    .box {
        ......
        display: flex;
        align-items: center;
    }
    
    .box label {
        ......
        display: block;
        width: 100%;
    }
    
    0
  • kaoutar ouadih• 700

    @kaoutar-ouadih

    Submitted

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

    I'm proud of completing this challenge!

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

    .

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

    Anything that can help me improve.

    P
    vcollins1• 410

    @vcollins1

    Posted

    Good solution!! To improve accessibility you could consider adding aria-expanded attributes to your buttons.

    <button aria-expanded="false">
        ....
    </button>
    

    You can use javascript to toggle aria-expanded= false/true when the button is click.

    0
  • kaoutar ouadih• 700

    @kaoutar-ouadih

    Submitted

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

    I'm proud of completing this challenge!

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

    .

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

    Anything that can help me improve.

    P
    vcollins1• 410

    @vcollins1

    Posted

    You could make selecting a rating more accessible by adding a role to your list of buttons, and adding a role of radio to each button. Also, an aria-label can be added to the ul so that a screen reader will announce what the group is for.

    <ul role="radiogroup" aria-label="rating 1 to 5">
        <li><button role="radio">1</button>
        ....
    </ul>
    
    0
  • P
    Bartosz Dudziak• 510

    @bartoszdudziak-dev

    Submitted

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

    • My solution looks quite good and works well even for more than four answers per question
    • I am proud of the theme toggle 😎
    • I would definitely build the code structure in better way. I split it in functions but it still can be messy for other people
    • I think I will refactor it using classes someday 😅
    • Also I'm going to add more animations, celebration effect and upgrade keyboard control

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

    • I had to use css custom variables with my scss to make theme toggle works
    • I found out that I can't use innerHTML for answers because they contain HTML code 😅
    • It was quite easy to make it working but I'm still weak in structure and DRY

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

    I did not use any frameworks and libraries. I think I am getting ready to start learning it. What should I start with?

    All comment will be helpful! Please leave your opinion 🫡

    P
    vcollins1• 410

    @vcollins1

    Posted

    Great job with this solution!! I liked your use of transition animation between questions, will try to use that in the future.

    0
  • P
    vcollins1• 410

    @vcollins1

    Posted

    To improve your solution you can factor in the password length when determining the strength.

    0
  • P
    vcollins1• 410

    @vcollins1

    Posted

    Great job completing this challenge.

    0
  • P
    vcollins1• 410

    @vcollins1

    Posted

    Good job, but can still use a little work like updating the cards dynamically with selected (daily, weekly, monthly) values.

    0