Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/src/components/v2/Checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export const Checkbox = ({
<div className={twMerge("flex items-center font-inter text-bunker-300", containerClassName)}>
<CheckboxPrimitive.Root
className={twMerge(
"flex h-4 w-4 shrink-0 items-center justify-center rounded-sm border border-mineshaft-400/50 bg-mineshaft-600 shadow-sm transition-all hover:bg-mineshaft-500",
isDisabled && "bg-bunker-400 hover:bg-bunker-400",
"flex h-4 w-4 shrink-0 items-center justify-center rounded-sm border border-mineshaft-400/50 bg-mineshaft-700 shadow-sm transition-all hover:bg-mineshaft-500",
isDisabled && "cursor-not-allowed bg-mineshaft-600 opacity-40",
Comment thread
scott-ray-wilson marked this conversation as resolved.
Comment thread
scott-ray-wilson marked this conversation as resolved.
isChecked && "border-primary/50 bg-primary/30",
Boolean(children) && "mr-3",
className
Expand Down
Loading