File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export function TrafficLights() {
3636 >
3737 < Button
3838 type = "button"
39+ variant = "unstyled"
3940 onClick = { handleClose }
4041 className = "group flex h-3 w-3 items-center justify-center rounded-full bg-[#ff5f57] transition-opacity hover:opacity-90"
4142 aria-label = "Close window"
@@ -53,6 +54,7 @@ export function TrafficLights() {
5354 </ Button >
5455 < Button
5556 type = "button"
57+ variant = "unstyled"
5658 onClick = { handleMinimize }
5759 className = "group flex h-3 w-3 items-center justify-center rounded-full bg-[#febc2e] transition-opacity hover:opacity-90"
5860 aria-label = "Minimize window"
@@ -65,6 +67,7 @@ export function TrafficLights() {
6567 </ Button >
6668 < Button
6769 type = "button"
70+ variant = "unstyled"
6871 onClick = { handleMaximize }
6972 className = "group flex h-3 w-3 items-center justify-center rounded-full bg-[#28c840] transition-opacity hover:opacity-90"
7073 aria-label = "Maximize window"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export function Input({
2323 ref = { ref }
2424 type = { type }
2525 className = { cn (
26- 'focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-text-quaternary/30 disabled:cursor-not-allowed disabled:opacity-50' ,
26+ 'focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50' ,
2727 className ,
2828 ) }
2929 disabled = { disabled }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export function Textarea({
2121 < textarea
2222 ref = { ref }
2323 className = { cn (
24- 'focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-text-quaternary/30 disabled:cursor-not-allowed disabled:opacity-50' ,
24+ 'focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50' ,
2525 className ,
2626 ) }
2727 disabled = { disabled }
You can’t perform that action at this time.
0 commit comments