@velocitycareerlabs/vc-renderer-sample 1.25.0-dev-build.1a8420b49 → 1.25.0-dev-build.1dac6d5c5

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": "@velocitycareerlabs/vc-renderer-sample",
3
- "version": "1.25.0-dev-build.1a8420b49",
3
+ "version": "1.25.0-dev-build.1dac6d5c5",
4
4
  "description": "VC Renderer Sample",
5
5
  "repository": "https://github.com/velocitycareerlabs/packages",
6
6
  "publishConfig": {
@@ -20,7 +20,7 @@
20
20
  "@types/node": "^16.18.119",
21
21
  "@types/react": "18.3.20",
22
22
  "@types/react-dom": "18.3.5",
23
- "@velocitycareerlabs/vc-renderer": "1.25.0-dev-build.1a8420b49",
23
+ "@velocitycareerlabs/vc-renderer": "1.25.0-dev-build.1dac6d5c5",
24
24
  "react": "18.3.1",
25
25
  "react-dom": "^18.3.1",
26
26
  "react-scripts": "5.0.1",
@@ -58,5 +58,5 @@
58
58
  "last 1 safari version"
59
59
  ]
60
60
  },
61
- "gitHead": "4e70e824459ee6cb80f24d36bc84c8943ae58ecd"
61
+ "gitHead": "ed9c3815680e74caac8f089263c90ef4be7a5968"
62
62
  }
package/src/App.css CHANGED
@@ -1,3 +1,5 @@
1
+ @import url('./assets/fonts/SFProDisplay/index.css');
2
+
1
3
  .App {
2
4
  text-align: center;
3
5
  padding: 2em;
@@ -0,0 +1,39 @@
1
+ @font-face {
2
+ font-family: 'SF Pro Display';
3
+ font-style: normal;
4
+ font-weight: 100;
5
+ src: url('./SF-Pro-Display-Thin.otf');
6
+ font-display: swap;
7
+ }
8
+
9
+ @font-face {
10
+ font-family: 'SF Pro Display';
11
+ font-style: normal;
12
+ font-weight: 300;
13
+ src: url('./SF-Pro-Display-Light.otf');
14
+ font-display: swap;
15
+ }
16
+
17
+ @font-face {
18
+ font-family: 'SF Pro Display';
19
+ font-style: normal;
20
+ font-weight: 400;
21
+ src: url('./SF-Pro-Display-Regular.otf');
22
+ font-display: swap;
23
+ }
24
+
25
+ @font-face {
26
+ font-family: 'SF Pro Display';
27
+ font-style: normal;
28
+ font-weight: 600;
29
+ src: url('./SF-Pro-Display-Semibold.otf');
30
+ font-display: swap;
31
+ }
32
+
33
+ @font-face {
34
+ font-family: 'SF Pro Display';
35
+ font-style: normal;
36
+ font-weight: 700;
37
+ src: url('./SF-Pro-Display-Bold.otf');
38
+ font-display: swap;
39
+ }