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

  • @Ben-Ricketts

    Submitted

    I changed it up a little bit to make it feel like my own a bit. couldnt figure out how to find the right fonts.

    Stefan3002 140

    @Stefan3002

    Posted

    The fonts are provided in a file in the starter pack. They link to Google Fonts from where you can download them (include them in HTML).

    Marked as helpful

    0
  • karan-5 60

    @karan-5

    Submitted

    I found some difficulty in arranging the components. I am not sure about the vertical alignment of the main container. I want to know about the best practice of aligning the component.

    Stefan3002 140

    @Stefan3002

    Posted

    To center something the right way you should wrap that element in a div that spans the whole screen (in this case you can actually use the body itself) and then say:

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

    This way you will get a centered component inside the wrapper.

    1
  • Stefan3002 140

    @Stefan3002

    Posted

    You can't really make it smooth, but you do not have to as you will always be handed the "version" that suits the width of your device. Some browsers smoothen it out, but it is just for aesthetics.

    0