We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd4b20 commit cb9a79cCopy full SHA for cb9a79c
extensions/ql-vscode/src/view/variant-analysis/RepoRow.tsx
@@ -62,6 +62,10 @@ const MetadataContainer = styled.div`
62
margin-left: auto;
63
`;
64
65
+const Checkbox = styled(VscodeCheckbox)`
66
+ margin-right: -9px; // VscodeCheckbox has 9px margin on the right by default
67
+`;
68
+
69
type VisibilityProps = {
70
isPrivate?: boolean;
71
};
@@ -255,7 +259,7 @@ export const RepoRow = ({
255
259
disabled={disabled}
256
260
aria-expanded={isExpanded}
257
261
>
258
- <VscodeCheckbox
262
+ <Checkbox
263
onChange={onChangeCheckbox}
264
onClick={onClickCheckbox}
265
checked={selected}
0 commit comments