d-g-town 2 gadi atpakaļ
vecāks
revīzija
5aa321425d
1 mainītis faili ar 6 papildinājumiem un 1 dzēšanām
  1. 6 1
      dashboard/src/main/MainWrapper.tsx

+ 6 - 1
dashboard/src/main/MainWrapper.tsx

@@ -13,10 +13,15 @@ import "@ory/elements/dist/style.css";
 
 type PropsType = RouteComponentProps;
 
+const themeOverrides = {
+  fontFamily: '"Work Sans", sans-serif',
+  // other theme properties...
+};
+
 const MainWrapper: React.FC<PropsType> = ({ history, location }) => {
   return (
     <ContextProvider history={history} location={location}>
-      <ThemeProvider themeOverrides={{}}>
+      <ThemeProvider themeOverrides={themeOverrides}>
         <IntlProvider locale="en" defaultLocale="en">
           <AuthzProvider>
             <AuthnProvider>