Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Fix iframe height attribute
Browse files Browse the repository at this point in the history
According to https://validator.w3.org/nu/?doc=https%3A%2F%2Fetcher.io%2F  `height="20px"` is invalid.
  • Loading branch information
lurch committed Jun 21, 2017
1 parent 4cede8c commit 0854595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default class extends Component {
<div className="share mb-5">
<Share url={locals.website} />
<div>
<iframe src={`https://ghbtns.com/github-btn.html?user=resin-io&repo=${locals.title.toLowerCase()}&type=star&count=true`} scrolling="0" width="100" height="20px"></iframe>
<iframe src={`https://ghbtns.com/github-btn.html?user=resin-io&repo=${locals.title.toLowerCase()}&type=star&count=true`} scrolling="0" width="100" height="20"></iframe>
</div>
</div>
<div className="screenshot">
Expand Down

0 comments on commit 0854595

Please sign in to comment.