From bfcc6a2248ce034c61cbee172a3f14eb9e0d853a Mon Sep 17 00:00:00 2001 From: Alex Khomenko Date: Fri, 4 Jun 2021 14:10:57 +0300 Subject: [PATCH] Remove extra margin for checkboxes (#35169) --- public/app/features/search/components/SearchItem.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/app/features/search/components/SearchItem.tsx b/public/app/features/search/components/SearchItem.tsx index 3fa04f66d51..e61eab5c042 100644 --- a/public/app/features/search/components/SearchItem.tsx +++ b/public/app/features/search/components/SearchItem.tsx @@ -53,7 +53,7 @@ export const SearchItem: FC = ({ item, editable, onToggleChecked, onTagSe style={{ minHeight: SEARCH_ITEM_HEIGHT }} className={styles.container} > - + @@ -94,5 +94,8 @@ const getStyles = (theme: GrafanaTheme) => { margin-bottom: 0; } `, + checkbox: css` + margin-right: 0; + `, }; };