From 53e58040491ed508b7eb2adbbd1641260486b758 Mon Sep 17 00:00:00 2001 From: Joao Silva <100691367+JoaoSilvaGrafana@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:18:23 +0100 Subject: [PATCH] GrafanaUI: Update border radius of InlineToast (#75098) --- packages/grafana-ui/src/components/InlineToast/InlineToast.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/InlineToast/InlineToast.tsx b/packages/grafana-ui/src/components/InlineToast/InlineToast.tsx index 6003f2f2093..efbda8b8390 100644 --- a/packages/grafana-ui/src/components/InlineToast/InlineToast.tsx +++ b/packages/grafana-ui/src/components/InlineToast/InlineToast.tsx @@ -63,7 +63,7 @@ const getStyles = (theme: GrafanaTheme2) => { background: theme.components.tooltip.background, color: theme.components.tooltip.text, padding: theme.spacing(0.5, 1.5), // get's an extra .5 of vertical padding to account for the rounded corners - borderRadius: theme.shape.radius.circle, + borderRadius: theme.shape.radius.pill, display: 'inline-flex', gap: theme.spacing(0.5), alignItems: 'center',