@adrian-reina-391Submitted about 1 year ago
I Have a huge Problem, i don´t know how to show the Eye SVG icon in the middle of the image and wit the right size, I need help in this part
I Have a huge Problem, i don´t know how to show the Eye SVG icon in the middle of the image and wit the right size, I need help in this part
Hi, It would be best if you used position for that particular part. Example: .card { position: relative; } .Equilibrium { width: 100%; display: block; } .eye_view { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none; } I hope now you'll be able to get it done.