Skip to content

Commit 865550c

Browse files
committed
fix(hub): bring back monospace font (#2781)
## Changes Uncommented the `mono-console` font family in the Tailwind configuration, enabling the use of Consolas, Lucida Console, Courier New, and monospace fonts in the application.
1 parent 5aa1a77 commit 865550c

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

frontend/packages/components/src/tailwind-base.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,12 @@ const config = {
4444
},
4545
extend: {
4646
fontFamily: {
47-
// TODO: We haven't configured importing this font
48-
//"mono-console": [
49-
// "Consolas",
50-
// "Lucida Console",
51-
// "Courier New",
52-
// "monospace",
53-
//],
47+
"mono-console": [
48+
"Consolas",
49+
"Lucida Console",
50+
"Courier New",
51+
"monospace",
52+
],
5453
},
5554
data: {
5655
active: 'status~="active"',

0 commit comments

Comments
 (0)