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

Submitted

Base Apparel Coming Soon

Paula Rodriguesโ€ข 250

@paulaabro

Desktop design screenshot for the Base Apparel coming soon page coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


Had to ask on slack for help w/ image on grid desktop

Community feedback

Lucas ๐Ÿ‘พโ€ข 104,440

@correlucas

Posted

๐Ÿ‘พOi Paula, tudo bem? Parabรฉns pelo desafio!

Eu usei grid-template-columns: 1fr 1fr; e dividiu certinho as duas colunas sem stress.

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "logo hero"
        "text hero";
    gap: 32px 10vw;
    margin-left: 12vw;
}

Eu te recomendo fortemente aquele tutorial do Kevin Powell (testiomial section) e o curso da Origamid que tinha te falado antes, simplicou demais usar grid e isso pq eu nem sei usar as propriedades mais pesadas tipo grid area e com calc.

๐Ÿ‘‹ Espero que essas dicas tenham sido รบteis e continue codando!

1
romilaโ€ข 3,570

@romila2003

Posted

Hi Paula,

Congratulations ๐ŸŽ‰ for completing this challenge, the page and form looks great and is responsive.

  1. On desktop, I noticed that there is an overflow on the x-axis and the y-axis. To prevent this, you can give it the overflow property and set it to hidden.
  2. In mobile screen, the position of the text within the input field, is centered in the middle. To position the placeholder to the left, you can add text-align: left and keep the padding.
  3. Your button is missing the type attribute which should be set to submit since this is a form.

Overall, great attempt and wish you the best for your future projects ๐Ÿ‘.

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord