@apify/docs-theme 1.0.117 → 1.0.119

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/docs-theme",
3
- "version": "1.0.117",
3
+ "version": "1.0.119",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "files": [
package/src/config.js CHANGED
@@ -150,7 +150,7 @@ const themeConfig = ({
150
150
  defaultLanguage: 'typescript',
151
151
  theme: require('prism-react-renderer').themes.github,
152
152
  darkTheme: require('prism-react-renderer').themes.dracula,
153
- additionalLanguages: ['docker', 'log', 'php'],
153
+ additionalLanguages: ['docker', 'log', 'php', 'json5'],
154
154
  },
155
155
  // this needs to be absolute link otherwise it gets resolved wrongly in project docs
156
156
  image: 'https://apify.com/og-image/docs-article',
@@ -340,11 +340,86 @@ body {
340
340
  }
341
341
 
342
342
  @font-face {
343
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
344
- 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
345
- 'Helvetica Neue', sans-serif;
343
+ font-family: -apple-system;
344
+ src: url('/font/lota.woff2') format('woff2'),
345
+ url('/font/lota.woff') format('woff');
346
+ font-weight: 600;
347
+ }
348
+
349
+ @font-face {
350
+ font-family: BlinkMacSystemFont;
351
+ src: url('/font/lota.woff2') format('woff2'),
352
+ url('/font/lota.woff') format('woff');
353
+ font-weight: 600;
354
+ }
355
+
356
+ @font-face {
357
+ font-family: 'Segoe UI';
358
+ src: url('/font/lota.woff2') format('woff2'),
359
+ url('/font/lota.woff') format('woff');
360
+ font-weight: 600;
361
+ }
362
+
363
+ @font-face {
364
+ font-family: 'Roboto';
365
+ src: url('/font/lota.woff2') format('woff2'),
366
+ url('/font/lota.woff') format('woff');
367
+ font-weight: 600;
368
+ }
369
+
370
+ @font-face {
371
+ font-family: 'Oxygen';
372
+ src: url('/font/lota.woff2') format('woff2'),
373
+ url('/font/lota.woff') format('woff');
374
+ font-weight: 600;
375
+ }
376
+
377
+ @font-face {
378
+ font-family: 'Ubuntu';
379
+ src: url('/font/lota.woff2') format('woff2'),
380
+ url('/font/lota.woff') format('woff');
381
+ font-weight: 600;
382
+ }
383
+
384
+ @font-face {
385
+ font-family: 'Cantarell';
386
+ src: url('/font/lota.woff2') format('woff2'),
387
+ url('/font/lota.woff') format('woff');
388
+ font-weight: 600;
389
+ }
390
+
391
+ @font-face {
392
+ font-family: 'Fira Sans';
393
+ src: url('/font/lota.woff2') format('woff2'),
394
+ url('/font/lota.woff') format('woff');
395
+ font-weight: 600;
396
+ }
397
+
398
+ @font-face {
399
+ font-family: 'Droid Sans';
400
+ src: url('/font/lota.woff2') format('woff2'),
401
+ url('/font/lota.woff') format('woff');
402
+ font-weight: 600;
403
+ }
404
+
405
+ @font-face {
406
+ font-family: 'Helvetica Neue';
407
+ src: url('/font/lota.woff2') format('woff2'),
408
+ url('/font/lota.woff') format('woff');
409
+ font-weight: 600;
410
+ }
411
+
412
+ @font-face {
413
+ font-family: 'Lota Grotesque';
414
+ src: url('/font/lota.woff2') format('woff2'),
415
+ url('/font/lota.woff') format('woff');
416
+ font-weight: 600;
417
+ }
418
+
419
+ @font-face {
420
+ font-family: sans-serif;
346
421
  src: url('/font/lota.woff2') format('woff2'),
347
- url('/font/lota.woff') format('woff');
422
+ url('/font/lota.woff') format('woff');
348
423
  font-weight: 600;
349
424
  }
350
425