Whenever I use dev tools to select mobile, my site (width 1440px) looks fine but if I choose desktop, the display is not correct. Do I need a specific media query for desktop devices? The only result that seems to work is when I select mobile-device on dev tools. When I pick desktop-device, it seems to use the same version as the tablet query.
Here are my queries: @media only screen and (min-width: 768px) and (max-width: 1023px) -for tablet- @media only screen and (min-width: 1024px) -for desktop-
Appreciate any help