From 37610c1934e2772e3faa6a8001496166db0f81e7 Mon Sep 17 00:00:00 2001 From: Guilherme Gazzo Date: Wed, 10 Aug 2022 23:52:45 -0300 Subject: [PATCH] fix(fuselage): Tooltip border-radius --- packages/fuselage/src/components/Tooltip/Tooltip.styles.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/fuselage/src/components/Tooltip/Tooltip.styles.scss b/packages/fuselage/src/components/Tooltip/Tooltip.styles.scss index 65b5a726e4..d4f6da7b34 100644 --- a/packages/fuselage/src/components/Tooltip/Tooltip.styles.scss +++ b/packages/fuselage/src/components/Tooltip/Tooltip.styles.scss @@ -74,7 +74,10 @@ $tooltip-text-color: functions.theme( color: $tooltip-text-color; - border-radius: theme('tooltip-border-radius', lengths.border-radius(medium)); + border-radius: functions.theme( + 'tooltip-border-radius', + lengths.border-radius(medium) + ); background-color: $tooltip-background-color;