Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Description This pull request addresses an issue with the display of Vietnamese text by modifying the font-family property. Previously, Vietnamese text might not have been rendered correctly due to the absence of a fallback font. This change adds a fallback font option to ensure proper display across various environments. ### Code Changes ```diff - font-family: 'Inter var' !important; + font-family: 'Inter var', sans-serif !important; ``` ### Testing To ensure that the display of Vietnamese text is fixed, the following steps were taken: 1. Applied the code change locally. 2. Loaded the application with Vietnamese text content. 3. Verified that Vietnamese text is displayed correctly without any rendering issues. 4. Ensured that the change did not adversely affect the display of text in other languages. This change has been tested and confirmed to resolve the issue with Vietnamese text display.
- Loading branch information