Skip to content

Commit 00ba797

Browse files
committed
chore: Update package versions and font configuration
1 parent 510d33a commit 00ba797

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

app/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "app",
33
"private": true,
4-
"version": "1.8.3",
4+
"version": "1.8.4",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

app/ui/src/App.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ export default function App() {
180180
theme={{
181181
algorithm:
182182
mode === "dark" ? theme.darkAlgorithm : theme.defaultAlgorithm,
183+
token: {
184+
fontFamily: "Inter",
185+
},
183186
}}
184187
>
185188
<StyleProvider hashPriority="high">

app/ui/src/assets/Inter-Regular.ttf

303 KB
Binary file not shown.

app/ui/src/index.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap");
1+
2+
@font-face {
3+
font-family: "Inter";
4+
src: url("./assets/Inter-Regular.ttf") format("truetype");
5+
}
26

37
* {
48
font-family: "Inter", sans-serif !important;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dialoqbase",
3-
"version": "1.8.3",
3+
"version": "1.8.4",
44
"description": "Create chatbots with ease",
55
"scripts": {
66
"ui:dev": "pnpm run --filter ui dev",

0 commit comments

Comments
 (0)