design feedback

This commit is contained in:
Mike Fortman 2025-09-30 12:20:09 -05:00
parent c46e9208cc
commit a3fe879eba
3 changed files with 6 additions and 35 deletions

View file

@ -11,7 +11,7 @@ const Switch = React.forwardRef<
>(({ className, ...props }, ref) => ( >(({ className, ...props }, ref) => (
<SwitchPrimitives.Root <SwitchPrimitives.Root
className={cn( className={cn(
"peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input", "peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-muted",
className className
)} )}
{...props} {...props}
@ -19,7 +19,7 @@ const Switch = React.forwardRef<
> >
<SwitchPrimitives.Thumb <SwitchPrimitives.Thumb
className={cn( className={cn(
"pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0" "pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0 data-[state=unchecked]:bg-primary"
)} )}
/> />
</SwitchPrimitives.Root> </SwitchPrimitives.Root>

View file

@ -1083,8 +1083,8 @@ function KnowledgeSourcesPage() {
</div> </div>
</div> </div>
</div> </div>
<div className="space-y-3"> <div className="">
<div className="flex items-center justify-between"> <div className="flex items-center justify-between py-3 border-b border-border">
<div className="flex-1"> <div className="flex-1">
<Label <Label
htmlFor="table-structure" htmlFor="table-structure"
@ -1102,7 +1102,7 @@ function KnowledgeSourcesPage() {
onCheckedChange={handleTableStructureChange} onCheckedChange={handleTableStructureChange}
/> />
</div> </div>
<div className="flex items-center justify-between"> <div className="flex items-center justify-between py-3 border-b border-border">
<div className="flex-1"> <div className="flex-1">
<Label <Label
htmlFor="ocr" htmlFor="ocr"
@ -1120,7 +1120,7 @@ function KnowledgeSourcesPage() {
onCheckedChange={handleOcrChange} onCheckedChange={handleOcrChange}
/> />
</div> </div>
<div className="flex items-center justify-between"> <div className="flex items-center justify-between py-3">
<div className="flex-1"> <div className="flex-1">
<Label <Label
htmlFor="picture-descriptions" htmlFor="picture-descriptions"

View file

@ -1,29 +0,0 @@
"use client"
import * as React from "react"
import * as SwitchPrimitives from "@radix-ui/react-switch"
import { cn } from "@/lib/utils"
const Switch = React.forwardRef<
React.ElementRef<typeof SwitchPrimitives.Root>,
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>
>(({ className, ...props }, ref) => (
<SwitchPrimitives.Root
className={cn(
"peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",
className
)}
{...props}
ref={ref}
>
<SwitchPrimitives.Thumb
className={cn(
"pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0"
)}
/>
</SwitchPrimitives.Root>
))
Switch.displayName = SwitchPrimitives.Root.displayName
export { Switch }