admin管理员组

文章数量:1291095

I’m currently working on a project with React and I’ve encountered an issue. The media queries are not working:

@media screen and (max-width: 768px) {
   /* styles here */
}

When I check how the page looks using DevTools, the responsive design for mobile devices appears correctly, but when I build the project using Vercel and send myself the link to open on my iPhone, the styles don’t apply on the phone. I would appreciate any help with this problem. I tried changing the syntax of the media queries.

本文标签: cssMedia queries not working after deploying project to VercelStack Overflow