Skip to content

Commit c9ee22b

Browse files
fix(Select): add missing style.
1 parent cc70fbd commit c9ee22b

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

client/src/components/ui/select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const SelectTrigger = React.forwardRef<
2222
<SelectPrimitive.Trigger
2323
ref={ref}
2424
className={cn(
25-
"flex h-9 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
25+
"flex h-9 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1 hover:border-[#646cff] hover:border-1",
2626
className,
2727
)}
2828
{...props}

client/src/index.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ a:hover {
2626
color: #535bf2;
2727
}
2828

29-
button:focus,
30-
button:focus-visible {
31-
outline: 4px auto -webkit-focus-ring-color;
32-
}
33-
3429
body {
3530
margin: 0;
3631
place-items: center;

0 commit comments

Comments
 (0)