@helloimkostya/konsolpro-custom-ui-mini 0.0.402 → 0.0.403
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/lib/index-mini.js +1 -1
- package/package.json +1 -1
- package/styles/fonts.css +11 -0
- package/styles/konsolpro-custom-ui.css +1 -1
- package/styles/variables.css +0 -127
package/lib/index-mini.js
CHANGED
|
@@ -2568,7 +2568,7 @@ const wt = h.forwardRef(
|
|
|
2568
2568
|
);
|
|
2569
2569
|
wt.displayName = H.Content.displayName;
|
|
2570
2570
|
const It = W(
|
|
2571
|
-
"outline-none font-cofo box-sizing-border-box cursor-pointer flex items-center justify-center whitespace-nowrap disabled:border-1 disabled:border-border disabled:bg-muted disabled:text-muted-foreground disabled:pointer-events-none transition-colors duration-200",
|
|
2571
|
+
"outline-none font-cofo font-normal tracking-[-0.03em] box-sizing-border-box cursor-pointer flex items-center justify-center whitespace-nowrap disabled:border-1 disabled:border-border disabled:bg-muted disabled:text-muted-foreground disabled:pointer-events-none transition-colors duration-200",
|
|
2572
2572
|
{
|
|
2573
2573
|
variants: {
|
|
2574
2574
|
variant: {
|
package/package.json
CHANGED
package/styles/fonts.css
CHANGED
|
@@ -9,6 +9,17 @@
|
|
|
9
9
|
font-display: swap;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
/* CoFo Sans Mono */
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: CoFoSansMono;
|
|
15
|
+
src: local('CoFo Sans Mono Regular'), local('CoFoSansMono-Regular'),
|
|
16
|
+
url('./fonts/CoFoSansMono-Regular.woff2') format('woff2'),
|
|
17
|
+
url('./fonts/CoFoSansMono-Regular.otf') format('opentype');
|
|
18
|
+
font-weight: 400;
|
|
19
|
+
font-style: normal;
|
|
20
|
+
font-display: swap;
|
|
21
|
+
}
|
|
22
|
+
|
|
12
23
|
@font-face {
|
|
13
24
|
font-family: GraphikLC;
|
|
14
25
|
src: local('Graphik LC Medium'), local('Graphik Medium'),
|