Skip to content

Commit

Permalink
[filigran-ui] Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkha committed Aug 21, 2024
1 parent 0c88dba commit 88d4ea6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/filigran-ui/src/components/clients/sheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const SheetContent = React.forwardRef<
ref={ref}
className={cn(sheetVariants({side}), className)}
{...props}>
<div className="flex max-h-full min-h-full overflow-auto px-xl pt-xl">
<div className="max-h-full min-h-full overflow-auto px-xl pt-xl">
{children}
</div>
<SheetPrimitive.Close asChild>
Expand Down Expand Up @@ -129,7 +129,7 @@ const SheetDescription = React.forwardRef<
>(({className, ...props}, ref) => (
<SheetPrimitive.Description
ref={ref}
className={cn('txt-sub-content text-muted-foreground', className)}
className={cn('text-muted-foreground txt-sub-content', className)}
{...props}
/>
))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const MultiSelectFormField = React.forwardRef<
ref={ref}
{...props}
onClick={() => setIsPopoverOpen(!isPopoverOpen)}
className="flex h-auto min-h-10 w-full items-center justify-between rounded-md border border-gray-150 bg-inherit p-1 hover:bg-gray-100">
className="flex h-auto min-h-10 w-full items-center justify-between rounded-md border border-gray-150 bg-inherit p-1 hover:bg-hover">
{selectedValues.length > 0 ? (
<div className="flex w-full items-center justify-between">
<div className="flex flex-wrap items-center">
Expand Down
5 changes: 2 additions & 3 deletions packages/filigran-ui/src/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
--border: var(--gray-400);
--input: 214.3 31.8% 91.4%;
--ring: 222.2 84% 4.9%;
--radius: 0.3rem;
--radius: 0.25rem;

--gray-default: var(--gray-200);
--gray-50: 240 11% 96%;
Expand All @@ -65,7 +65,7 @@
--darkblue-800: 232.31 100% 22.94%;
--darkblue-900: 232.73 100% 12.94%;

--blue-default: var(--blue-500);
--blue-default: var(--blue-400);
--blue-100: 195 100% 90%;
--blue-200: 195 100% 85%;
--blue-300: 199 100% 75%;
Expand Down Expand Up @@ -149,7 +149,6 @@
--border: 247 50% 12.9%;
--input: 247 50% 12.9%;
--ring: 247 100% 43%;
--radius: 0.3rem;

--page-background: var(--dark-100);
--box-background: #ffffff;
Expand Down

0 comments on commit 88d4ea6

Please sign in to comment.