Skip to content

Commit 8dd798e

Browse files
committedDec 2, 2024·
clients/metrics: polish analytics view
1 parent b4a8ec3 commit 8dd798e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎clients/apps/web/src/components/Metrics/DateRangePicker.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ const DateRangePicker: React.FC<DateRangePickerProps> = ({
5252
return (
5353
<div className={twMerge('grid gap-2', className)}>
5454
<Popover>
55-
<PopoverTrigger asChild>
55+
<PopoverTrigger
56+
asChild
57+
className="dark:bg-polar-800 !rounded-full border-gray-200 bg-white"
58+
>
5659
<Button
5760
id="date"
5861
variant={'outline'}

‎clients/packages/polarkit/src/components/ui/atoms/Card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Card = React.forwardRef<
1717
<CardPrimitive
1818
ref={ref}
1919
className={twMerge(
20-
'dark:bg-polar-800 rounded-4xl dark:border-polar-700 border-transparent bg-white text-gray-950 shadow-none dark:text-white',
20+
'dark:bg-polar-800 rounded-4xl border-transparent bg-white text-gray-950 shadow-none shadow-sm dark:border-transparent dark:text-white',
2121
className,
2222
)}
2323
{...props}

0 commit comments

Comments
 (0)
Please sign in to comment.