From 6073ccca8e5e08699d1256c895cffba4675fedc5 Mon Sep 17 00:00:00 2001 From: Daniel Valdivia Date: Tue, 7 Apr 2020 16:54:23 -0700 Subject: [PATCH] Change font to Lato --- portal-ui/public/index.html | 2 +- portal-ui/src/index.css | 4 +--- portal-ui/src/theme/main.ts | 14 +++++++------- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/portal-ui/public/index.html b/portal-ui/public/index.html index 5f503ccfe6..30dc7a142a 100644 --- a/portal-ui/public/index.html +++ b/portal-ui/public/index.html @@ -12,7 +12,7 @@ manifest.json provides metadata used when your web app is installed on a user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> - + diff --git a/portal-ui/src/index.css b/portal-ui/src/index.css index ec2585e8c0..07601913fd 100644 --- a/portal-ui/src/index.css +++ b/portal-ui/src/index.css @@ -1,8 +1,6 @@ body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; + font-family: 'Lato', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } diff --git a/portal-ui/src/theme/main.ts b/portal-ui/src/theme/main.ts index 703b8aa958..a2344b8220 100644 --- a/portal-ui/src/theme/main.ts +++ b/portal-ui/src/theme/main.ts @@ -35,30 +35,30 @@ const theme = createMuiTheme({ } }, typography: { - fontFamily: ["Questrial", "sans-serif"].join(','), + fontFamily: ["Lato", "sans-serif"].join(","), h1: { fontWeight: "bold", - color:"#201763" + color: "#201763" }, h2: { fontWeight: "bold", - color:"#201763" + color: "#201763" }, h3: { fontWeight: "bold", - color:"#201763" + color: "#201763" }, h4: { fontWeight: "bold", - color:"#201763" + color: "#201763" }, h5: { fontWeight: "bold", - color:"#201763" + color: "#201763" }, h6: { fontWeight: "bold", - color:"#000000" + color: "#000000" } } });