Skip to content

Commit acc3238

Browse files
committed
chore(dashboard): os fonts
1 parent 1f86470 commit acc3238

File tree

8 files changed

+12
-16
lines changed

8 files changed

+12
-16
lines changed

packages/apps/app-dashboard/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="preload" as="image" href="/vincent-main-logo.png" fetchpriority="high">
88

99
<!-- Fonts -->
10-
<link rel="stylesheet" href="/fonts/glacial-indifference/style.css">
10+
<link rel="stylesheet" href="/fonts/poppins/style.css">
1111
<link rel="stylesheet" href="/fonts/encode-sans-semi-expanded/style.css">
1212

1313
<!-- Favicon -->
Binary file not shown.

packages/apps/app-dashboard/public/fonts/glacial-indifference/style.css

Lines changed: 0 additions & 8 deletions
This file was deleted.
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@font-face {
2+
font-family: 'Poppins';
3+
src: url('Poppins-Medium.ttf') format('truetype');
4+
font-weight: 500;
5+
font-style: normal;
6+
font-display: swap;
7+
}

packages/apps/app-dashboard/src/components/developer-dashboard/form-fields/ImageUploadField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export function ImageUploadField({
9393
name={name}
9494
render={() => (
9595
<FormItem>
96-
<FormLabel style={fonts.heading}>
96+
<FormLabel>
9797
{label}
9898
{required && <span className="text-red-500 dark:text-red-400 ml-1">*</span>}
9999
</FormLabel>

packages/apps/app-dashboard/src/components/explorer/ui/ExplorerNav.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,14 @@ export function ExplorerNav({ onNavigate, sidebarTrigger }: ExplorerNavProps) {
3434
const isUser = location.pathname.startsWith('/user');
3535

3636
return (
37-
<nav className="fixed top-0 left-0 right-0 z-[60] bg-white/80 dark:bg-gray-950/80 backdrop-blur-md border-b border-gray-200 dark:border-white/10 pointer-events-auto">
37+
<nav className="fixed top-0 left-0 right-0 z-40 bg-white/80 dark:bg-gray-950/80 backdrop-blur-md border-b border-gray-200 dark:border-white/10 pointer-events-auto">
3838
<div className="px-6 sm:px-8 py-3">
3939
<div className="flex items-center justify-between">
4040
{/* Left side: Sidebar trigger (mobile only), Logo and main nav links */}
4141
<div className="flex items-center gap-3 sm:gap-6">
4242
{/* Sidebar trigger for mobile */}
4343
{sidebarTrigger && (
44-
<div
45-
className="md:hidden flex items-center relative z-[70]"
46-
style={{ paddingTop: '10px' }}
47-
>
44+
<div className="md:hidden flex items-center relative" style={{ paddingTop: '10px' }}>
4845
{sidebarTrigger}
4946
</div>
5047
)}

packages/apps/app-dashboard/src/components/user-dashboard/connect/ui/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const theme = {
3131
// Font families as style objects for inline styles
3232
export const fonts = {
3333
heading: {
34-
fontFamily: "'Glacial Indifference', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",
34+
fontFamily: "'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",
3535
},
3636
body: {
3737
fontFamily:

0 commit comments

Comments
 (0)