File tree Expand file tree Collapse file tree 4 files changed +32
-29
lines changed
Expand file tree Collapse file tree 4 files changed +32
-29
lines changed Original file line number Diff line number Diff line change 11{
2- "dependencies" : {
3- "@instructure/ui" : " ^11.2.0" ,
4- "@instructure/ui-color-utils" : " ^10.2.0" ,
5- "react" : " ^19.2.0" ,
6- "react-dom" : " ^19.2.0"
7- },
8- "devDependencies" : {
9- "@instructure.ai/shared-configs" : " workspace:^"
10- },
11- "name" : " @instructure.ai/roadmap" ,
12- "private" : true ,
13- "repository" : {
14- "directory" : " apps/roadmap" ,
15- "type" : " git" ,
16- "url" : " https://github.com/instructure/instructure.ai"
17- },
18- "scripts" : {
19- "build" : " vite build" ,
20- "dev" : " vite" ,
21- "lint" : " pnpm biome check" ,
22- "preview" : " vite preview" ,
23- "test" : " pnpm vitest run" ,
24- "typecheck" : " tsgo --noEmit"
25- },
26- "type" : " module" ,
27- "version" : " 1.0.2"
2+ "dependencies" : {
3+ "@instructure/ui" : " ^11.2.0" ,
4+ "@instructure/ui-color-utils" : " ^10.2.0" ,
5+ "react" : " ^19.2.0" ,
6+ "react-dom" : " ^19.2.0"
7+ },
8+ "devDependencies" : {
9+ "@instructure.ai/shared-configs" : " workspace:^"
10+ },
11+ "name" : " @instructure.ai/roadmap" ,
12+ "private" : true ,
13+ "repository" : {
14+ "directory" : " apps/roadmap" ,
15+ "type" : " git" ,
16+ "url" : " https://github.com/instructure/instructure.ai"
17+ },
18+ "scripts" : {
19+ "build" : " vite build" ,
20+ "dev" : " vite" ,
21+ "lint" : " pnpm biome check" ,
22+ "preview" : " vite preview" ,
23+ "test" : " pnpm vitest run" ,
24+ "typecheck" : " tsgo --noEmit"
25+ },
26+ "type" : " module" ,
27+ "version" : " 1.0.2"
2828}
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import {
1010 sendHeight ,
1111} from "./utils" ;
1212import "./App.css" ;
13- import "./assets/fonts/AtkinsonHyperlegibleNext.css" ;
1413
1514const App : FC = ( ) => {
1615 const [ overlayOpen , setOverlayOpen ] = useState ( false ) ;
@@ -87,7 +86,10 @@ const App: FC = () => {
8786 theme = { {
8887 ...canvas ,
8988 ...( brandConfig as object ) ,
90- typography : { fontFamily : "Atkinson Hyperlegible Next, sans-serif" } ,
89+ typography : {
90+ ...canvas . typography ,
91+ fontFamily : "Atkinson Hyperlegible Next, sans-serif" ,
92+ } ,
9193 } }
9294 >
9395 { Entries . length ? (
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { StrictMode } from "react";
22import { createRoot , type Root } from "react-dom/client" ;
33import App from "./App.tsx" ;
44import "./Main.css" ;
5+ import "./assets/fonts/AtkinsonHyperlegibleNext.css" ;
56
67const root : HTMLElement =
78 document . getElementById ( "root" ) ||
Original file line number Diff line number Diff line change 123123 font-weight : 800 ;
124124 font-style : italic;
125125 font-display : swap;
126- }
126+ }
You can’t perform that action at this time.
0 commit comments