diff --git a/src/components/gui/sortable-tab.tsx b/src/components/gui/sortable-tab.tsx index 4837727f..41d551b6 100644 --- a/src/components/gui/sortable-tab.tsx +++ b/src/components/gui/sortable-tab.tsx @@ -27,19 +27,22 @@ export const WindowTabItemButton = forwardRef< >(function WindowTabItemButton(props: WindowTabItemButtonProps, ref) { const { icon: Icon, selected, title, onClose, isDragging, ...rest } = props; - const className = cn( - "h-9 flex items-center text-left text-xs font-semibold px-2 w-max-[150px]", - "libsql-window-tab", - isDragging && "z-20", - isDragging && !selected && "bg-gray-200 dark:bg-gray-700 rounded-t", - selected - ? "border-x border-t bg-background border-b-background rounded-t" - : "border-b border-t border-t-secondary border-x-secondary opacity-65 hover:opacity-100" - ); - return ( -