From 959a562e7c8fd634968f696a107d8ffb9d4ed5c2 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Tue, 4 Nov 2025 11:09:08 -0800 Subject: [PATCH] fix more shadows --- src/app/auth/(private)/org/page.tsx | 2 +- src/components/tags/tag.tsx | 2 +- src/components/ui/calendar.tsx | 2 +- src/components/ui/dialog.tsx | 2 +- src/components/ui/dropdown-menu.tsx | 4 ++-- src/components/ui/popover.tsx | 2 +- src/components/ui/select.tsx | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/auth/(private)/org/page.tsx b/src/app/auth/(private)/org/page.tsx index 1d8dea21..36dfd175 100644 --- a/src/app/auth/(private)/org/page.tsx +++ b/src/app/auth/(private)/org/page.tsx @@ -156,7 +156,7 @@ export default async function OrgAuthPage(props: { - + {t("orgAuthSignInTitle")} diff --git a/src/components/tags/tag.tsx b/src/components/tags/tag.tsx index 938a2669..0a35b374 100644 --- a/src/components/tags/tag.tsx +++ b/src/components/tags/tag.tsx @@ -46,7 +46,7 @@ export const tagVariants = cva( capitalize: "capitalize" }, interaction: { - clickable: "cursor-pointer hover:shadow-md", + clickable: "cursor-pointer hover:shadow-sm", nonClickable: "cursor-default" }, animation: { diff --git a/src/components/ui/calendar.tsx b/src/components/ui/calendar.tsx index 9ef5b08c..3daec7ab 100644 --- a/src/components/ui/calendar.tsx +++ b/src/components/ui/calendar.tsx @@ -70,7 +70,7 @@ function Calendar({ defaultClassNames.dropdowns ), dropdown_root: cn( - "has-focus:border-ring border-input shadow-xs has-focus:ring-ring/50 relative rounded-md border", + "has-focus:border-ring border-input has-focus:ring-ring/50 relative rounded-md border", defaultClassNames.dropdown_root ), dropdown: cn( diff --git a/src/components/ui/dialog.tsx b/src/components/ui/dialog.tsx index da9e6504..8870bdb5 100644 --- a/src/components/ui/dialog.tsx +++ b/src/components/ui/dialog.tsx @@ -38,7 +38,7 @@ const DialogContent = React.forwardRef<