Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit aa7f83a

Browse files
jeffbcrossThomasBurleson
authored andcommitted
fix(font): use Roboto font instead of RobotoDraft
RobotoDraft was temporary until the new version of Roboto was released to Google Web Fonts. Now that Roboto has been updated as of January 2015, RobotoDraft is considered deprecated. Fixes #4063. Closes #4064.
1 parent 38f2c35 commit aa7f83a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/config/template/index.template.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</title>
88
<link rel="icon" type="image/x-icon" href="favicon.ico" />
99
<meta name="viewport" content="initial-scale=1" />
10-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=RobotoDraft:300,400,500,700,400italic">
10+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic">
1111
<link rel="stylesheet" href="angular-material.min.css">
1212
<link rel="stylesheet" href="docs.css">
1313
</head>

src/core/style/variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
// Typography
99
// ------------------------------
10-
$font-family: RobotoDraft, Roboto, 'Helvetica Neue', sans-serif !default;
10+
$font-family: Roboto, 'Helvetica Neue', sans-serif !default;
1111
$font-size: 10px;
1212

1313
$display-4-font-size-base: rem(11.20) !default;

0 commit comments

Comments
 (0)