PromucFlow_constructor/app/client/public/font-style.css

11 lines
341 B
CSS
Raw Normal View History

fix: font family changes to PT root in privacy and tnc pages (#33992) ## Description Privacy and Term & conditions pages was not using latest platform font PT root since it was served as normal HTML files. This PR addresses that issue. Fixes #33427 ## Automation /ok-to-test tags="@tag.Sanity" ### :mag: Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/9382277755> > Commit: 75416ef2dea7c8b696ed2f880a2af8a575f37be5 > Cypress dashboard url: <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=9382277755&attempt=1" target="_blank">Click here!</a> <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced new font styling across various pages using the PT Root UI font family for a consistent look and feel. - **Style** - Updated `404.html`, `privacy-policy.html`, and `terms-and-conditions.html` to include a link to the new `font-style.css` stylesheet. - Removed redundant `font-family` declarations from `privacy-policy.html` and `terms-and-conditions.html`. - **Documentation** - Added `licence.txt` for the PT Root UI font, detailing the SIL Open Font License. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2024-06-05 10:51:56 +00:00
@import "./static/font/pt-root-ui.css";
body {
-webkit-font-smoothing: auto;
font-feature-settings: "ss03";
text-wrap: pretty;
font-family: "PTRootUI", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto",
"Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", "Icons16",
sans-serif;;
letter-spacing: -.1px
}