Skip to content

Commit da007a2

Browse files
committed
Using Roboto font in UI which increases readability of text.
1 parent a36bd22 commit da007a2

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGES.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## Changes in version 0.4.1-dev.0 (in development)
1+
## Changes in version 0.4.1
2+
3+
* Using Roboto font in UI which increases readability of text.
4+
25

36
## Changes in version 0.4.0
47

public/index.html

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44
<meta charset="utf-8"/>
55
<meta name="viewport" content="width=device-width, initial-scale=1"/>
66
<meta name="theme-color" content="#000000"/>
7+
8+
<!-- Material-UI wants this -->
9+
<meta
10+
name="viewport"
11+
content="minimum-scale=1, initial-scale=1, width=device-width"
12+
/>
13+
<!-- Material-UI wants Roboto font -->
14+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
15+
716
<link rel="icon" href="%PUBLIC_URL%/%REACT_APP_BRANDING%/favicon.ico"/>
817
<link rel="apple-touch-icon" href="%PUBLIC_URL%/%REACT_APP_BRANDING%/logo192.png"/>
918
<!--

src/index.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
22
margin: 0;
33
padding: 0;
4-
font-family: sans-serif;
4+
font-family: "Roboto", "Segoe UI", "sans-serif";
55
}

0 commit comments

Comments
 (0)