@medplum/react 0.9.17 → 0.9.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,9 @@
6
6
  --medplum-navbar-textbox: rgba(255, 255, 255, 0.2);
7
7
  --medplum-navbar-placeholder: rgba(255, 255, 255, 0.6);
8
8
  --medplum-shadow: rgba(0, 0, 0, 0.1);
9
- /* font sizes */
9
+ /* fonts */
10
+ --medplum-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
11
+ --medplum-monospace-font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
10
12
  --medplum-font-small: 12px;
11
13
  --medplum-font-normal: 13px;
12
14
  --medplum-font-big: 18px;
@@ -184,7 +186,7 @@
184
186
 
185
187
  html {
186
188
  height: 100%;
187
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
189
+ font-family: var(--medplum-font-family);
188
190
  position: relative;
189
191
  }
190
192
 
@@ -216,14 +218,14 @@ input[type='tel'],
216
218
  input[type='text'],
217
219
  input[type='time'],
218
220
  input[type='url'],
219
- select {
220
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
221
+ select,
222
+ textarea {
223
+ font-family: var(--medplum-font-family);
221
224
  }
222
225
 
223
226
  code,
224
- pre,
225
- textarea {
226
- font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
227
+ pre {
228
+ font-family: var(--medplum-monospace-font-family);
227
229
  }
228
230
 
229
231
  a {