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

  • @oliversteidel

    Submitted

    For the searchbar I added a dropdown list with suggestions on every 'keyup' for what country the user is looking for. It was not mentioned in the styleguide, but i thought it would be a nice challenge too. I struggled a bit with the different sizes of the flag images, because I didn't want them to be cut off. How did you solve this?

    Do you have suggestions for improvement?

    @ianbrdeguzman

    Posted

    Hello Oliver!

    I had the same problem with the flags. Then I found out about CSS property object-fit. More info here. https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit

    0
  • @Kerdael

    Submitted

    Hi guys ! I think it looks good. Only one issue : my footer can t be centered. I tried everything. It must be a display : ... problem. What do you think ? Thanks for your feedback, take care

    @ianbrdeguzman

    Posted

    Hello Cedric mate,

    First off congratulations! To center your footer you can use position absolute with transform translate:

        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    0
  • @ianbrdeguzman

    Posted

    Hello Samuel,

    Thank you for taking time to write a feedback really appreciate it.🙏

    I guess I was only thinking of what I'm currently coding and not the whole picture😂. That's a great tip will take note of it and have a nice day!

    0