Latest solutions
Interactive Rating Component with React and Firebase
#firebase#react#motionSubmitted over 3 years ago
Latest comments
- @RaphaelFernando@satyamchaudharydev
Hey, centering any element is not that hard. For center :- use display flex to the parent of element that you want to center and parent must have width and height.
.your_parent_element{ display: flex; justify-content: center; //horizontally center align-items: center; //vertically center }
- @IgnJov@satyamchaudharydev
Well done, but it needed one change:- when my window size(height) is smaller then card height , it is not looking responsive.
Marked as helpful - @Afrianns@satyamchaudharydev
Hey it is good, but It is not responsive when window height is less then card's height.
- @gourav0919@satyamchaudharydev
Awesome man.
- @eurekaop4@satyamchaudharydev
It is good but it needed some changes:- ---> In desktop preview, the width of card is too much.It would be better if you change the width of card. --> add padding to the body. So, that in mobile preview some whitespace will be visible.
Check this if you didn't get what I'm saying https://satyamchaudharydev.github.io/h100daysofcode/Day2/index.html
- @danrare@satyamchaudharydev
You did well.