@trackunit/css-tailwind 0.0.92-alpha-86320ab965.0 → 0.0.92
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 +5 -5
- package/tailwind-base.generated.css +43 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "0.0.92
|
|
3
|
+
"version": "0.0.92",
|
|
4
4
|
"main": "./index.cjs.js",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
},
|
|
10
10
|
"type": "commonjs",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@trackunit/css-component-tokens": "0.0.
|
|
13
|
-
"@trackunit/css-core": "0.0.99
|
|
14
|
-
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.
|
|
15
|
-
"@trackunit/ui-design-tokens": "0.0.
|
|
12
|
+
"@trackunit/css-component-tokens": "0.0.42",
|
|
13
|
+
"@trackunit/css-core": "0.0.99",
|
|
14
|
+
"@trackunit/css-tailwind-custom-properties-plugin": "0.0.31",
|
|
15
|
+
"@trackunit/ui-design-tokens": "0.0.79"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {}
|
|
18
18
|
}
|
|
@@ -332,6 +332,49 @@
|
|
|
332
332
|
padding: 0;
|
|
333
333
|
}
|
|
334
334
|
|
|
335
|
+
/* libs/css/core/src/lib/fonts.css */
|
|
336
|
+
@font-face {
|
|
337
|
+
font-family: "GT Walsheim";
|
|
338
|
+
src: url(./GT-Walsheim-Light-VL62J6E3.woff2) format("woff2");
|
|
339
|
+
font-weight: 300;
|
|
340
|
+
}
|
|
341
|
+
@font-face {
|
|
342
|
+
font-family: "GT Walsheim";
|
|
343
|
+
src: url(./GT-Walsheim-Regular-GNMGHH5F.woff2) format("woff2");
|
|
344
|
+
font-weight: 400;
|
|
345
|
+
}
|
|
346
|
+
@font-face {
|
|
347
|
+
font-family: "GT Walsheim";
|
|
348
|
+
src: url(./GT-Walsheim-Regular-Oblique-2OUASC3S.woff2) format("woff2");
|
|
349
|
+
font-weight: 400;
|
|
350
|
+
font-style: italic;
|
|
351
|
+
}
|
|
352
|
+
@font-face {
|
|
353
|
+
font-family: "GT Walsheim";
|
|
354
|
+
src: url(./GT-Walsheim-Medium-3CTRSVVD.woff2) format("woff2");
|
|
355
|
+
font-weight: 500;
|
|
356
|
+
}
|
|
357
|
+
@font-face {
|
|
358
|
+
font-family: "GT Walsheim";
|
|
359
|
+
src: url(./GT-Walsheim-Bold-DGVXLJI5.woff2) format("woff2");
|
|
360
|
+
font-weight: 700;
|
|
361
|
+
}
|
|
362
|
+
:root {
|
|
363
|
+
--fonts-default:
|
|
364
|
+
"SF Pro Display",
|
|
365
|
+
-apple-system,
|
|
366
|
+
BlinkMacSystemFont,
|
|
367
|
+
"Segoe UI",
|
|
368
|
+
Roboto,
|
|
369
|
+
Oxygen,
|
|
370
|
+
Ubuntu,
|
|
371
|
+
Cantarell,
|
|
372
|
+
"Open Sans",
|
|
373
|
+
"Helvetica Neue",
|
|
374
|
+
sans-serif;
|
|
375
|
+
--fonts-marketplace: "GT Walsheim", var(--fonts-default);
|
|
376
|
+
}
|
|
377
|
+
|
|
335
378
|
/* libs/css/core/src/lib/core.css */
|
|
336
379
|
[type=button] {
|
|
337
380
|
-webkit-appearance: none;
|