File tree 2 files changed +14
-5
lines changed
src/frontend/apps/impress
2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+ : root {
2
+ --c--theme--colors--primary-text : # 12ff4d ;
3
+ }
Original file line number Diff line number Diff line change 1
1
import { Loader } from '@openfun/cunningham-react' ;
2
+ import Head from 'next/head' ;
2
3
import { PropsWithChildren , useEffect } from 'react' ;
3
4
4
5
import { Box } from '@/components' ;
@@ -54,10 +55,15 @@ export const ConfigProvider = ({ children }: PropsWithChildren) => {
54
55
}
55
56
56
57
return (
57
- < AnalyticsProvider >
58
- < CrispProvider websiteId = { conf ?. CRISP_WEBSITE_ID } >
59
- { children }
60
- </ CrispProvider >
61
- </ AnalyticsProvider >
58
+ < >
59
+ < Head >
60
+ < link rel = "stylesheet" href = "http://localhost:3000/styles.css" />
61
+ </ Head >
62
+ < AnalyticsProvider >
63
+ < CrispProvider websiteId = { conf ?. CRISP_WEBSITE_ID } >
64
+ { children }
65
+ </ CrispProvider >
66
+ </ AnalyticsProvider >
67
+ </ >
62
68
) ;
63
69
} ;
You can’t perform that action at this time.
0 commit comments