From da05a55e067ddaa23351d4dba194c839530f94a0 Mon Sep 17 00:00:00 2001 From: Michael Prentice Date: Mon, 15 Jun 2020 23:11:49 -0400 Subject: [PATCH] fix(tooltip): change from inline to inline-block to account for md-panel change - `md-panel` changed from `position: fixed` to `relative` - that resulted in the tooltip's `height` style not having any effect --- src/components/tooltip/tooltip.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/tooltip/tooltip.scss b/src/components/tooltip/tooltip.scss index bef64769cdb..d86223878db 100644 --- a/src/components/tooltip/tooltip.scss +++ b/src/components/tooltip/tooltip.scss @@ -9,6 +9,7 @@ $tooltip-lr-padding-sm: 16px !default; $tooltip-max-width: 32px !default; .md-tooltip { + display: inline-block; pointer-events: none; border-radius: 4px; overflow: hidden;