From 413ee631d3a37301c77c282e3edcb69c2333528b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 5 Sep 2024 21:54:25 +0000 Subject: [PATCH] Fix sass division use (#426) Signed-off-by: Miki (cherry picked from commit 53740e2e7b554e050072413a04a647f63dfc784a) Signed-off-by: github-actions[bot] --- .../search_result/result_components/result_grid.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/components/query_compare/search_result/result_components/result_grid.scss b/public/components/query_compare/search_result/result_components/result_grid.scss index d54aa76..305ba02 100644 --- a/public/components/query_compare/search_result/result_components/result_grid.scss +++ b/public/components/query_compare/search_result/result_components/result_grid.scss @@ -60,7 +60,7 @@ doc-table { dt { background-color: tintOrShade($euiColorPrimary, 90%, 70%); color: $euiTextColor; - padding: ($euiSizeXS / 2) $euiSizeXS; + padding: calc($euiSizeXS / 2) $euiSizeXS; margin-right: $euiSizeXS; word-break: normal; border-radius: $euiBorderRadius;