Latest solutions
Latest comments
- @MahdiRezaeiDev@MahdiRezaeiDev
Hello everyone, I have added Linters to this branch in order to check my code for best practices. I have also customized the bootstrap-sass files based on this project's requirements. Now the problem is that the Linters do not pass and there is no error in the mentioned lines by the Linters. I will really appreciate it if someone helps me. Here is my pull request Link
- @BenChi3D@MahdiRezaeiDev
Your solution looks great but, in order to position the content in the center. you can use the
justify-content: center
property ofgrid
orflex
.for this, you have to define the container of your card as a grid or flex element and add the mentioned property to it. for your solution, you can use the following peace of code. remove the
padding-left
andmargin-top
properties and instead add the following code to the.content
class.justify-content:center; align-items:center;
if it was helpful, mark my comment as helpful.
Marked as helpful - @AfricanBambatha69@MahdiRezaeiDev
The problem is, that you have used
height: 15%
andwidth: 20%
. so on the small screens, the 20% will be so tiny. to solve this you have to define a media query for the small screens, or you have to use themax-width
property with themin()
function.max-width: min(400px, 90%) height: auto; margin-inline: auto;
If it was helpful, mark my comment as helpful.
Marked as helpful - @ErayBarslan@MahdiRezaeiDev
WOW, really accurate. How do you manage it?
- @kkulek@MahdiRezaeiDev
your design is looking perfectly fine. just a little suggestion, it will be better if the user can come back to the rating page once he/she submitted the form. Maybe you can do it by adding an event listener to the body to hide the welcome message and display the form again.
- @mrluisfer@MahdiRezaeiDev
Hello dear, you have done a great job, but it looks like your solution image is not looking the exact same as the challenge. for this, you need to give a pink background to the container of the image and apply the following style to your image.
mix-blend-mode: multiply; opacity: 0.8;
if it was helpful, mark my comment as helpful.