Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@pior-labs:registry=https://npm.pkg.github.com
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@finlens/shared": "workspace:*",
"@ipior/custom-tailwind-shadcn-themes": "github:iPior/custom-tailwind-shadcn-themes#pkg",
"@pior-labs/design-system": "1.0.0",
"@radix-ui/react-slot": "^1.2.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/app.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import "tailwindcss";
@import "@ipior/custom-tailwind-shadcn-themes/styles.css";
@import "@ipior/custom-tailwind-shadcn-themes/effects.css";
@import "@pior-labs/design-system/styles.css";
@import "@pior-labs/design-system/effects.css";

@keyframes categorize-content-in {
from { opacity: 0; transform: translateY(8px); }
Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/hooks/useTheme.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ThemeProvider as BaseThemeProvider } from '@ipior/custom-tailwind-shadcn-themes';
import { ThemeProvider as BaseThemeProvider } from '@pior-labs/design-system';

export {
DEFAULT_THEME,
Expand All @@ -7,7 +7,7 @@ export {
useTheme,
type ThemeId,
type ThemeOption
} from '@ipior/custom-tailwind-shadcn-themes';
} from '@pior-labs/design-system';

const STORAGE_KEY = 'finlens-theme';

Expand Down
Loading