Adjusting Font Size on Mobile Devices

We understand that recent changes to font sizes on mobile devices may not suit everyone. If you find the text too small on your TMail, you can easily adjust the font size by following these steps:

  1. Log in to the Admin Panel:

  2. Add Custom CSS:

    <style>
    @media only screen and (min-width: 400px) and (max-width: 1024px) {
        html {
            font-size: 14px !important;
        }
    }
    @media only screen and (max-width: 400px) {
        html {
            font-size: 12px !important;
        }
    }
    </style>
  3. Adjust as Needed:

This adjustment affects the base font size of the HTML element. Since we use Tailwind CSS, which applies relative font sizes, this change will affect all text elements proportionally.

If you have any questions or need further assistance, please reach out to our support team.