diff --git a/src/app/globals.css b/src/app/globals.css index 2a1434fe..95bb7686 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,8 +4,8 @@ @custom-variant dark (&:where(.dark, .dark *)); /* Hide icon ligature text until font is ready */ -.material-symbols-outlined { visibility: hidden; } -.fonts-loaded .material-symbols-outlined { visibility: visible; } +.material-symbols-outlined { opacity: 0; } +.fonts-loaded .material-symbols-outlined { opacity: 1; transition: opacity .12s ease-out; } /* ============================================================ 9Router palette — adopted from 9remote_private/web diff --git a/src/app/layout.js b/src/app/layout.js index 5ea6c11d..8e9b7609 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -34,7 +34,7 @@ export default function RootLayout({ children }) {