Skip to content

Commit

Permalink
[docs] Fix incorrect checkbox alignment in getting started table (#2987)
Browse files Browse the repository at this point in the history
* fix checkbox alignment in table cell

* Code style changes - run prettier
  • Loading branch information
thevipinmishra committed Nov 19, 2022
1 parent bb3b2cf commit c0e5992
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -44,7 +44,10 @@ export function PackagesInstallation({ extraPackages = [] }: PackagesInstallatio
onClick={() => toggleSelection(item.package)}
>
<td>
<Checkbox checked={selection.includes(item.package)} sx={{ pointerEvents: 'none' }} />
<Checkbox
checked={selection.includes(item.package)}
sx={{ pointerEvents: 'none', display: 'flex' }}
/>
</td>
<td>
<Code>{item.package}</Code>
Expand Down

0 comments on commit c0e5992

Please sign in to comment.