@gitbutler/design-core 1.2.0 → 1.2.2

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/README.md CHANGED
@@ -48,7 +48,6 @@ Or import individual font families:
48
48
  @import "@gitbutler/design-core/fonts/inter/Inter-Regular.woff2";
49
49
  @import "@gitbutler/design-core/fonts/geist-mono/GeistMono-Regular.woff2";
50
50
  @import "@gitbutler/design-core/fonts/but-head/But-Head-Regular.woff2";
51
- @import "@gitbutler/design-core/fonts/pp-editorial/PPEditorialNew-Regular.woff2";
52
51
  ```
53
52
 
54
53
  ### Core Styles
package/fonts/fonts.css CHANGED
@@ -13,11 +13,6 @@
13
13
  * - Export: Available via @gitbutler/design-core/fonts
14
14
  */
15
15
 
16
- @font-face {
17
- src: url("pp-editorial/PPEditorialNew-Regular.woff2") format("woff2");
18
- font-family: "PP Editorial New";
19
- }
20
-
21
16
  @font-face {
22
17
  font-style: normal;
23
18
  font-weight: 400;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbutler/design-core",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "type": "module",
5
5
  "description": "Design tokens for GitButler applications",
6
6
  "keywords": [
@@ -12,7 +12,7 @@
12
12
  "homepage": "https://github.com/gitbutlerapp/design-tokens",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/gitbutlerapp/design-tokens.git"
15
+ "url": "git+https://github.com/gitbutlerapp/design-tokens.git"
16
16
  },
17
17
  "main": "./tokens/tokens.css",
18
18
  "exports": {
package/styles/base.css CHANGED
@@ -32,5 +32,5 @@ html {
32
32
  body {
33
33
  overflow-x: hidden;
34
34
  color: var(--clr-text-1);
35
- font-family: var;
35
+ font-family: var(--font-default);
36
36
  }