Skip to content

Commit 7b5aa4c

Browse files
Sean PrashadSean Prashad
authored andcommitted
Add Open Sans font from Google font API
1 parent 9ef0d58 commit 7b5aa4c

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

web/src/index.css

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1+
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
2+
13
body {
24
margin: 0;
3-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4-
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5-
sans-serif;
6-
-webkit-font-smoothing: antialiased;
5+
font-family: 'Open Sans', sans-serif;
6+
-webkit-font-smoothing: antialiased !important;
77
-moz-osx-font-smoothing: grayscale;
88
}
9-
10-
code {
11-
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12-
monospace;
13-
}

web/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom';
33
import './index.css';
4-
import App from './App';
4+
import App from './components/App';
55

66
ReactDOM.render(<App />, document.getElementById('root'));

0 commit comments

Comments
 (0)