From c70c1d328e08e742571297c546b8fa555b7e349a Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 13 Sep 2017 23:15:03 -0700 Subject: [PATCH 1/2] Override font from normalize.css in base for inputs --- frontend/styles/base.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/styles/base.css b/frontend/styles/base.css index 1c9f8a731..52f316ae8 100644 --- a/frontend/styles/base.css +++ b/frontend/styles/base.css @@ -20,9 +20,17 @@ body, margin: 0; } -body { +body, +button, +input, +optgroup, +select, +textarea { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; +} + +body { font-size: 16px; line-height: 1.5; margin: 0; From c3c9c68ce6775a0d75222c4b1cf52408ffd84777 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 13 Sep 2017 23:18:21 -0700 Subject: [PATCH 2/2] Fix target on editor links, closes #246 --- frontend/components/Editor/components/Link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/Editor/components/Link.js b/frontend/components/Editor/components/Link.js index 5cd0e03c3..dad765f2a 100644 --- a/frontend/components/Editor/components/Link.js +++ b/frontend/components/Editor/components/Link.js @@ -4,7 +4,7 @@ import type { Props } from '../types'; export default function Link({ attributes, node, children }: Props) { return ( - + {children} );