Skip to content

Commit

Permalink
Since google fonts are available on SSL maybe use the
Browse files Browse the repository at this point in the history
protocol-relative URL instead?

```css
@import url('//fonts.googleapis.com/css?family=Roboto:400,700|Inconsolata|Raleway:200');
```

instead of:

```css
@import url('http://fonts.googleapis.com/css?family=Roboto:400,700|Inconsolata|Raleway:200');
```
  • Loading branch information
pongstr committed Aug 10, 2015
1 parent ba0f700 commit dc375dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion styles/variables-default.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import url(//fonts.googleapis.com/css?family=Roboto:400,700|Inconsolata|Raleway:200);
@import url('//fonts.googleapis.com/css?family=Roboto:400,700|Inconsolata|Raleway:200');

/* Page-wide variables */
@padding: 12px;
Expand Down
2 changes: 1 addition & 1 deletion styles/variables-flatly.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import url(//fonts.googleapis.com/css?family=Roboto:400,700|Inconsolata|Raleway:200);
@import url('//fonts.googleapis.com/css?family=Roboto:400,700|Inconsolata|Raleway:200');

/* Page-wide variables */
@padding: 12px;
Expand Down

0 comments on commit dc375dd

Please sign in to comment.