Hi All,
Feedback welcome.
Hi All,
Feedback welcome.
Hi there, that's a good work right there, but I have some recommendations!
Instead of width: 310px
in .container
add width: min(500px, 90vw)
, it will adjust width to 500px and if screen's width will be less than 500px .container
will adjust to it!
Replace margin: auto
in .container
to margin: 1.5rem auto
to add some additional space to the top and bottom!
Good Luck! π
Great work π, but I have a suggestion for you!
background-size: 100% 100%
from class .hero
and add these styles insteadbackground-size: cover;
background-position: center;
like this background image will fit well on all devices!
Any feedback is welcome. Thank you.
Good job π, but I have a suggestion!
background-size: contain
to the body
, so background image would fit well on larger devices!Use react + react-router-dom . i'am a newbie.
Good job π, but I have a suggestion!
padding: 1rem 1.2rem
in the class .point
use these styleswidth: 3rem;
height: 3rem;
like this circles will be round!
Excellent work π, but I have a suggestion!
.container
margin-top: 100px;
height: auto;
and add min-height: 100vh
instead, like this layout will be centered!
Great work π, but I have some recommendations!
height: 100vh
to min-height: 100vh
in the body
, the difference is that, when you set height: 100vh
to something, that means it won't be bigger than that, it might cause some problems in the future, so better approach is to set min-height: 100vh
, like this in case content is overflowing container will adjust to it!width: 100%
from the body
, body
is a block level element which by default takes full space available, so width: 100%
does nothing here!Great job π, but I have a suggestion!
.wrapper
width: 100%;
height: 100%;
they do nothing here!
Excellent work π, but I have some suggestions!
height: 100vh
to min-height: 100vh
in the body
, the difference is that, when you set height: 100vh
to something, that means it won't be bigger than that, it might cause some problems in the future, so better approach is to set min-height: 100vh
, like this in case content is overflowing container will adjust to it!margin: 0
to the body
, this will remove all unnecessary space!Great work π, but I have some recommendations!
height: 100vh
to min-height: 100vh
in the body
, the difference is that, when you set height: 100vh
to something, that means it won't be bigger than that, it might cause some problems in the future, so better approach is to set min-height: 100vh
, like this in case content is overflowing container will adjust to it!width: 100%
from the body
, body
is a block level element which by default takes full space available, so width: 100%
does nothing here!I couldn't center the content in the button, if you guys know how, please let me know.
Good job π, but I have some recommendations!
height: 100vh
to min-height: 100vh
in the body
, the difference is that, when you set height: 100vh
to something, that means it won't be bigger than that, it might cause some problems in the future, so better approach is to set min-height: 100vh
, like this in case content is overflowing container will adjust to it!width: 100%
from the body
, body
is a block level element which by default takes full space available, so width: 100%
does nothing here!Excellent work π, but I have a suggestion!
padding-top: 5%
from the body
and add these styles insteadmin-height: 100vh;
justify-content: center;
like this layout will be centered!