integrations_dev_panel: Use same font-family as used in the app.

Most of the select, input and textarea elements in the app uses
"Source sans 3" font.

This commit updates the select, input and textarea elements in
"/devtools/integrations" page to use "Source sans 3" font
and not the one set by Bootstrap.
This commit is contained in:
Sahil Batra
2022-12-26 23:18:26 +05:30
committed by Tim Abbott
parent b82b87adc4
commit 541076ca68

View File

@@ -20,7 +20,6 @@
padding: 4px 6px;
margin-bottom: 10px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
box-shadow: inset 0 1px 1px hsla(0, 0%, 0%, 0.075);
@@ -38,6 +37,12 @@
cursor: not-allowed;
}
}
select,
textarea,
input {
font-family: inherit;
}
}
#fixture_body {