@cloudron/pankow 3.6.6 → 3.6.7

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.
@@ -725,7 +725,7 @@ export default {
725
725
  padding: 10px;
726
726
  padding-top: 20px;
727
727
  display: flex;
728
- font-weight: bold;
728
+ font-weight: var(--pankow-font-weight-bold);
729
729
  }
730
730
 
731
731
  .directory-view-body-container {
@@ -94,7 +94,7 @@ function onActivated() {
94
94
  padding: 0;
95
95
  margin: 5px 13px;
96
96
  font-size: 12px;
97
- font-weight: bold;
97
+ font-weight: var(--pankow-font-weight-bold);
98
98
  gap: 5px;
99
99
  }
100
100
 
package/index.js CHANGED
@@ -1,4 +1,7 @@
1
- import '@fontsource/inter';
1
+
2
+ import "@fontsource/inter/400.css";
3
+ import "@fontsource/inter/500.css";
4
+
2
5
  import '@fortawesome/fontawesome-free/css/all.min.css';
3
6
  import './style.css';
4
7
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudron/pankow",
3
3
  "private": false,
4
- "version": "3.6.6",
4
+ "version": "3.6.7",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "types": "types/index.d.ts",
package/style.css CHANGED
@@ -8,6 +8,9 @@
8
8
 
9
9
  :root {
10
10
  --font-family: 'Inter';
11
+ --pankow-font-family: var(--font-family);
12
+ --pankow-font-weight-normal: 400;
13
+ --pankow-font-weight-bold: 500;
11
14
 
12
15
  --pankow-body-background-color: white;
13
16
 
@@ -78,6 +81,10 @@ html, body {
78
81
  overflow: hidden;
79
82
  }
80
83
 
84
+ b {
85
+ font-weight: var(--pankow-font-weight-bold);
86
+ }
87
+
81
88
  input {
82
89
  accent-color: var(--pankow-color-primary);
83
90
  }
@@ -132,7 +139,7 @@ code {
132
139
 
133
140
  label {
134
141
  display: block;
135
- font-weight: bold;
142
+ font-weight: var(--pankow-font-weight-bold);
136
143
  margin-top: 10px;
137
144
  margin-bottom: 6px;
138
145
  }