Explore: Convert kebab-case styles to camel-case (#88048)

This commit is contained in:
Piotr Jamróz 2024-05-21 11:38:05 +02:00 committed by GitHub
parent a398188e69
commit 03650f76f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,8 +30,8 @@ const getStyles = (theme: GrafanaTheme2) => ({
}), }),
singleLine: css({ singleLine: css({
display: '-webkit-box', display: '-webkit-box',
'-webkit-box-orient': 'vertical', WebkitBoxOrient: 'vertical',
'-webkit-line-clamp': '1', WebkitLineClamp: 1,
overflow: 'hidden', overflow: 'hidden',
}), }),
}); });