Hi all,
I'm trying to add some lines in Custom Styles in Dashboard:
@media (min-width: 768px)
.Post {
padding-left: 105px;
}
The problem is that Custom Styles ignores the @media (min-width: 768px) and no changes are made. If I lose the @media (min-width: 768px) line and I simply add:
.Post {
padding-left: 105px;
}
...well it works, but it changes the width on all screens/devices/sizes etc.
My question is, how can I change the width only on desktop screens in Custom Styles without the @media (min-width: 768px) line?