Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
endiliey committed Jul 15, 2018
2 parents ada5cc4 + 03e237a commit e80ced2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/server/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const fs = require('fs-extra');
const React = require('react');
const env = require('./env.js');
const readMetadata = require('./readMetadata.js');
const DocsLayout = require('../core/DocsLayout.js');
const {insertTOC} = require('../core/toc.js');
const {getPath} = require('../core/utils.js');

Expand Down Expand Up @@ -76,6 +75,7 @@ function getComponent(rawContent, mdToHtml, metadata) {
`](${siteConfig.baseUrl}docs/assets/`
);

const DocsLayout = require('../core/DocsLayout.js');
return (
<DocsLayout
metadata={metadata}
Expand Down
8 changes: 7 additions & 1 deletion lib/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,16 @@ body {
box-sizing: border-box;
}

strong {
strong,
b {
font-weight: 600;
}

em,
i {
font-style: italic;
}

[type='checkbox'] {
box-sizing: border-box;
padding: 0;
Expand Down

0 comments on commit e80ced2

Please sign in to comment.