From c826c1d1cd1fd826213c1532d84aff12b7a4d72a Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Wed, 13 May 2020 13:36:04 +0200 Subject: [PATCH] Use same font and remove borders/shadhows --- editor/src/styles.scss | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/editor/src/styles.scss b/editor/src/styles.scss index 91d36dc..4e2170e 100644 --- a/editor/src/styles.scss +++ b/editor/src/styles.scss @@ -1,5 +1,14 @@ @import "~bulma"; +html { font-family: 'Inter', sans-serif; } +body { font-family: 'Inter', sans-serif; } +input.input { font-family: 'Inter', sans-serif; } +@supports (font-variation-settings: normal) { + html { font-family: 'Inter var', sans-serif; } + body { font-family: 'Inter var', sans-serif; } + input.input { font-family: 'Inter var', sans-serif; } +} + #editor { } @@ -23,8 +32,12 @@ padding: 2px 0px; } -input.input, input.input:active { +input.input, +input.input:active, +input.input:focus { box-shadow: none; + border: none; + height: initial; } .codex-editor .icon {