Skip to content

Commit

Permalink
fix(tooltip): fix RTL
Browse files Browse the repository at this point in the history
  • Loading branch information
Enlcxx committed Apr 29, 2019
1 parent e191600 commit 4ca1b38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/tooltip/tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export class LyTooltip implements OnInit, OnDestroy {
padding: '6px 8px',
opacity: 0,
transition: `opacity ${theme.animations.curves.standard} 300ms`,
left: 0,
[theme.getBreakpoint('XSmall')]: {
padding: '8px 16px',
fontSize: '14px',
Expand All @@ -174,6 +175,7 @@ export class LyTooltip implements OnInit, OnDestroy {
}

hide(delay?: number) {
// return;
const tooltipOverlay = this._tooltipOverlay;
delay = typeof delay === 'number' ? delay : this.lyTooltipHideDelay;
if (this._showTimeoutId) {
Expand Down

0 comments on commit 4ca1b38

Please sign in to comment.