Skip to content

Commit

Permalink
fix(font): use Roboto font instead of RobotoDraft
Browse files Browse the repository at this point in the history
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 angular#4063. Closes angular#4064.
  • Loading branch information
jeffbcross authored and kennethcachia committed Sep 23, 2015
1 parent 4b47d45 commit f200e46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/config/template/index.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="initial-scale=1" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=RobotoDraft:300,400,500,700,400italic">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic">
<link rel="stylesheet" href="angular-material.min.css">
<link rel="stylesheet" href="docs.css">
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/core/style/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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

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

0 comments on commit f200e46

Please sign in to comment.