Skip to content

Commit

Permalink
chore: Update package versions and font configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
n4ze3m committed May 31, 2024
1 parent 510d33a commit 00ba797
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "app",
"private": true,
"version": "1.8.3",
"version": "1.8.4",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
3 changes: 3 additions & 0 deletions app/ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ export default function App() {
theme={{
algorithm:
mode === "dark" ? theme.darkAlgorithm : theme.defaultAlgorithm,
token: {
fontFamily: "Inter",
},
}}
>
<StyleProvider hashPriority="high">
Expand Down
Binary file added app/ui/src/assets/Inter-Regular.ttf
Binary file not shown.
6 changes: 5 additions & 1 deletion app/ui/src/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap");

@font-face {
font-family: "Inter";
src: url("./assets/Inter-Regular.ttf") format("truetype");
}

* {
font-family: "Inter", sans-serif !important;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dialoqbase",
"version": "1.8.3",
"version": "1.8.4",
"description": "Create chatbots with ease",
"scripts": {
"ui:dev": "pnpm run --filter ui dev",
Expand Down

0 comments on commit 00ba797

Please sign in to comment.