Skip to content

Commit

Permalink
fix(web): fix node strategy popup background color
Browse files Browse the repository at this point in the history
  • Loading branch information
rocka committed Oct 25, 2024
1 parent 89327af commit 3d5743c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/liveman/components/nodes-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ type NodeStrategyTableProps = Pick<Node, 'strategy'>;
function NodeStrategyTable({ strategy }: NodeStrategyTableProps) {
return (
<div class="h-[1lh] overflow-hidden relative group hover:overflow-visible">
<table class="mx-auto px-1 bg-neutral-800 rounded group-hover:absolute group-hover:inset-x-0 group-hover:z-1 group-hover:outline group-hover:outline-indigo-500">
<table class="mx-auto px-1 bg-white @dark:bg-neutral-800 rounded group-hover:absolute group-hover:inset-x-0 group-hover:z-1 group-hover:outline group-hover:outline-indigo-500">
<tbody>
{Object.entries(strategy).map(([k, v]) => (
<tr>
Expand Down

0 comments on commit 3d5743c

Please sign in to comment.