Adonai Jonathan
@ajadonaiAll comments
- P@waffledood@ajadonai
Your component is way to big when I tried to load it up on my phone, that can be fixed with a media query so on a desktop it takes the 500px you set and on the mobile device it takes up 80-90% of the screen size.
@media screen and (screen width goes here) {
*your class goes here *
}
Marked as helpful - @AJsdevs@ajadonai
I just checked out your website using my phone and it wasn’t rendering right. You need to work on your responsiveness. I always recommend frameworks for things like that
- @bennicholson2@ajadonai
to solve the responsiveness issue you are facing, i will advice that you learn how to use a css framework like bootstrap or tailwind. They help you out in making your website responsive and also help reduce the time you spend in creating your own version of things.
Yes, you can achieve the result with a short line of css, you just have to combine alot of codes you used multiple times into one handler
Marked as helpful