Hi,
I’m trying to figure out code to adjust the font size for rich text below on mobile devices.
.rich-text .rich-text__text {
font-size: 24px;
font-weight: 600;
} /* Default button styles (common to all devices) */
.rich-text__blocks .button {
background-color: rgb(153, 170, 181);
font-size: 16px;
box-shadow: unset !important;
} /* Media query for desktop screens /
@media (min-width: 992px) {
.rich-text__blocks .button {
font-size: 24px;
height: 48px;
}
} / Media query for mobile screens to increase rich text font size */
@media (max-width: 991px) {
.rich-text .rich-text__text {
font-size: 38px;
font-weight: 600;
}
}
