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

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 #4063. Closes #4064.
  • Loading branch information
jeffbcross authored and ThomasBurleson committed Aug 13, 2015
1 parent 38f2c35 commit aa7f83a
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 aa7f83a

Please sign in to comment.