diff --git a/public/app/features/search/components/SearchItem.tsx b/public/app/features/search/components/SearchItem.tsx
index 0aab8a0657f..60de8daf986 100644
--- a/public/app/features/search/components/SearchItem.tsx
+++ b/public/app/features/search/components/SearchItem.tsx
@@ -69,6 +69,7 @@ export const SearchItem = ({ item, isSelected, editable, onToggleChecked, onTagS
return (
{
padding: ${theme.spacing(1)} ${theme.spacing(2)};
margin-bottom: 0;
`,
+ checkbox: css({
+ marginRight: theme.spacing(1),
+ }),
metaContainer: css`
display: flex;
align-items: center;
diff --git a/public/app/features/search/page/components/FolderSection.tsx b/public/app/features/search/page/components/FolderSection.tsx
index f5af53456f2..0ce2aa52046 100644
--- a/public/app/features/search/page/components/FolderSection.tsx
+++ b/public/app/features/search/page/components/FolderSection.tsx
@@ -149,6 +149,7 @@ export const FolderSection = ({
{selectionToggle && selection && (
@@ -232,5 +233,8 @@ const getSectionHeaderStyles = (theme: GrafanaTheme2, editable: boolean) => {
place-content: center;
padding-bottom: 1rem;
`,
+ checkbox: css({
+ marginRight: theme.spacing(1),
+ }),
};
};