Mobile CSS examples
How to control text size on mobile/ smaller devices
{
--dp-heading-size: 20px;
--dp-small-heading-size: 18px;
--dp-body-size: 13px;
}.dsgn-pck__heading {
font-size: 20px;
}
.dsgn-pck__small-heading {
font-size: 18px;
}
.dsgn-pck__text p {
font-size: 18px;
}
.dsgn-pck__text a {
font-size: 18px;
}
.dsgn-pck__button {
font-size: 18px;
}
How to hide section on mobile
How to show a section ONLY on mobile
Last updated