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 20, 2024
1 parent 0c88dba commit 95bc8eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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
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 95bc8eb

Please sign in to comment.