Skip to content

Commit

Permalink
fix font family in header
Browse files Browse the repository at this point in the history
  • Loading branch information
shadyass committed Mar 27, 2024
1 parent f1a2980 commit 88e1c51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airdao/ui-library",
"version": "1.4.13",
"version": "1.4.14",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types.d.ts",
Expand All @@ -19,6 +19,7 @@
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
Expand Down
6 changes: 3 additions & 3 deletions src/components/Header/Header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
.balance span {
color: #46464d;
text-align: center;
font-family: var(--font-inter);
font-family: Inter, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
Expand Down Expand Up @@ -216,7 +216,7 @@
.address-info__copied {
display: block;
color: var(--neutral-300, #a1a6b2);
font-family: var(--font-inter);
font-family: Inter, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 700;
Expand Down Expand Up @@ -450,7 +450,7 @@
.address-info__disconnect {
display: flex;
color: #ff6767;
font-family: var(--font-inter);
font-family: Inter, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
Expand Down

0 comments on commit 88e1c51

Please sign in to comment.