I am currently building an email template that needs to be responsive for mobile devices with appropriate text stylings and elements sizing. For example, when I apply a class for all p elements, I use class:
.mcnTextContent p {
font-size: 14px;
}
And it perfectly works in resulting template.
But the problem is that if I try to use media queries and use classes like:
@media only screen and (max-width: 1024px) {
.mcnTextContent p {
font-size: 10px;
}
or
@media only screen and (min-width: 1024px) {
.mcnTextContent p {
font-size: 14px;
}
They don't apply to elements and in resulting email p elements have just standard font size.
Any help or suggestions are really appreciated.