From e7b551caa4d8cf1f59c1a08ec1891017002910c4 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Mon, 1 Sep 2025 13:12:35 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8D=B1(frontend)=20update=20material-icon?= =?UTF-8?q?s=20font?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't use the material-icons font from ui-kit anymore, we need to import it directly in order to use both the outlined and filled variants. --- src/frontend/apps/impress/src/pages/globals.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/frontend/apps/impress/src/pages/globals.css b/src/frontend/apps/impress/src/pages/globals.css index 39f04244..caa6a02a 100644 --- a/src/frontend/apps/impress/src/pages/globals.css +++ b/src/frontend/apps/impress/src/pages/globals.css @@ -1,5 +1,6 @@ @import url('../cunningham/cunningham-style.css'); @import url('@fontsource/material-icons'); +@import url('@fontsource/material-icons-outlined'); body { margin: 0; @@ -43,8 +44,9 @@ main ::-webkit-scrollbar-thumb:hover, outline: inherit; } +.material-icons, .material-icons-filled { - font-family: 'Material Icons', sans-serif; + font-family: 'Material Icons Outlined', 'Material Icons', sans-serif; font-weight: normal; font-style: normal; font-size: 24px; /* Preferred icon size */ @@ -69,6 +71,10 @@ main ::-webkit-scrollbar-thumb:hover, font-feature-settings: 'liga'; } +.material-icons-filled { + font-family: 'Material Icons', sans-serif; +} + [data-nextjs-dialog-overlay] { display: none !important; }