fix: use ring instead of outline on components
This commit is contained in:
parent
76d263b7e6
commit
44d08169a9
4 changed files with 16 additions and 6 deletions
|
|
@ -90,10 +90,13 @@ export default function MachineRow({
|
|||
return (
|
||||
<tr
|
||||
key={machine.id}
|
||||
className="group hover:bg-headplane-50 dark:hover:bg-headplane-950"
|
||||
className="'group hover:bg-headplane-50 dark:hover:bg-headplane-950"
|
||||
>
|
||||
<td className="pl-0.5 py-2">
|
||||
<Link to={`/machines/${machine.id}`} className="group/link h-full">
|
||||
<td className="pl-0.5 py-2 focus-within:ring">
|
||||
<Link
|
||||
to={`/machines/${machine.id}`}
|
||||
className={cn('group/link h-full focus:outline-none')}
|
||||
>
|
||||
<p
|
||||
className={cn(
|
||||
'font-semibold leading-snug',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue