While testing I realized that my html isn't responsive to mobile devices. After some learning, I added @media to ensure web styles didn't interfere with mobile.
This method is quite manual but works well for my use case since I only have to account for two types of devices (phones, and tablets+laptops).
While testing I realized that my html isn't responsive to mobile devices. After some learning, I added
@media
to ensure web styles didn't interfere with mobile.This method is quite manual but works well for my use case since I only have to account for two types of devices (phones, and tablets+laptops).