diff --git a/website/src/components/Page.js b/website/src/components/Page.js index 1affdfe0..42361ec9 100644 --- a/website/src/components/Page.js +++ b/website/src/components/Page.js @@ -17,14 +17,13 @@ require('prismjs/themes/prism.css'); type Props = {| children: any, - title?: string, className?: string, withSpacing?: boolean, |}; export default (props: Props) => (
- +
{props.children}
diff --git a/website/src/components/Toolbar.css b/website/src/components/Toolbar.css index 240b7101..8774061d 100644 --- a/website/src/components/Toolbar.css +++ b/website/src/components/Toolbar.css @@ -15,6 +15,11 @@ background-color: white; } +.Toolbar .selected { + color: #8FD0C6; + text-decoration: underline; +} + .Toolbar .logo { display: flex; align-items: center; diff --git a/website/src/components/Toolbar.js b/website/src/components/Toolbar.js index 3adb6763..054669ca 100644 --- a/website/src/components/Toolbar.js +++ b/website/src/components/Toolbar.js @@ -31,8 +31,8 @@ export default class Toolbar extends Component { /> - Docs - Playground + Documentation + Playground GitHub {this.props.onShowCode && ( diff --git a/website/src/pages/playground.js b/website/src/pages/playground.js index cc86fc76..0574724a 100644 --- a/website/src/pages/playground.js +++ b/website/src/pages/playground.js @@ -15,7 +15,7 @@ import Page from '../components/Page'; import Playground from '../components/Playground'; export default () => ( - + );