From 03650f76f1660202ac01cf684d4c5dc06884d6c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Jamr=C3=B3z?= Date: Tue, 21 May 2024 11:38:05 +0200 Subject: [PATCH] Explore: Convert kebab-case styles to camel-case (#88048) --- .../explore/QueryLibrary/QueryTemplatesTable/styles.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app/features/explore/QueryLibrary/QueryTemplatesTable/styles.tsx b/public/app/features/explore/QueryLibrary/QueryTemplatesTable/styles.tsx index 34b9ff33d4e..1c7897e6e5d 100644 --- a/public/app/features/explore/QueryLibrary/QueryTemplatesTable/styles.tsx +++ b/public/app/features/explore/QueryLibrary/QueryTemplatesTable/styles.tsx @@ -30,8 +30,8 @@ const getStyles = (theme: GrafanaTheme2) => ({ }), singleLine: css({ display: '-webkit-box', - '-webkit-box-orient': 'vertical', - '-webkit-line-clamp': '1', + WebkitBoxOrient: 'vertical', + WebkitLineClamp: 1, overflow: 'hidden', }), });