@GiovanniPereira05Submitted 11 months ago
Any feedback is welcome but especially help about mobile border-radius I didn't know how to do it
Any feedback is welcome but especially help about mobile border-radius I didn't know how to do it
Hello Giovanni, I took a look at the code and it seems to be correct, you did it! Regarding border radious on mobile, the only thing you need to do is add these new codes within the mobile field, as if you were writing new code, understand?
In your example it would be something more or less like this:
@media screen and (max-width: 767px) {
.container {
flex-direction: column;
align-items: center;
}
#q1{
border-radius: "your new values here";
}
#q2{
border-radius: "your new values here";
}
#q3{
border-radius: "your new values here";
}
}
I would also add a top and bottom margin to the mobile container to suit the project.
I hope I helped and didn't bother you rsrs