Use same font and remove borders/shadhows
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter Stuifzand 2020-05-13 13:36:04 +02:00
parent 1f76f47514
commit c826c1d1cd

View File

@ -1,5 +1,14 @@
@import "~bulma"; @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 { #editor {
} }
@ -23,8 +32,12 @@
padding: 2px 0px; padding: 2px 0px;
} }
input.input, input.input:active { input.input,
input.input:active,
input.input:focus {
box-shadow: none; box-shadow: none;
border: none;
height: initial;
} }
.codex-editor .icon { .codex-editor .icon {