Template

Instructions

Table of contents

Global

Font smoothing

We've implemented font smoothing by adding the following code to the Head Code section within the project settings.

This code enhances the visual appearance of text by optimizing font rendering, ensuring smoother and more refined typography across different devices and browsers.

<style>
body {
    -webkit-font-smoothing: antialiased; /* For WebKit browsers */
    -moz-osx-font-smoothing: grayscale;  /* For macOS Firefox */
}
</style>