From 7a1a686133f63a16df35fcb54658e6328bca93fe Mon Sep 17 00:00:00 2001 From: Pranav Date: Tue, 21 May 2024 13:35:35 -0700 Subject: [PATCH] fix: Fix typo in the font for portals (#9515) The fonts on the portal were not loaded properly before due to a typo in the stylesheet. The font that is shown on the public portal is ui-sans right now. This PR fixes it. --- app/javascript/portal/application.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/portal/application.scss b/app/javascript/portal/application.scss index 5b4ce77dd..01246578e 100644 --- a/app/javascript/portal/application.scss +++ b/app/javascript/portal/application.scss @@ -11,7 +11,7 @@ html, body { - font-family: 'Inter Display', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; + font-family: 'InterDisplay', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; height: 100%;