Skip to content

Commit

Permalink
fix(webapp): hide tooltip if there's no data (#1472)
Browse files Browse the repository at this point in the history
  • Loading branch information
eh-am committed Sep 8, 2022
1 parent 90f21bf commit df4c8cc
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -9,6 +9,12 @@
border-radius: 4px;
padding: 8px 12px;
color: var(--ps-tooltip-text);

// Don't show anything when there's no body
// Otherwise an empty box will be shown
&:empty {
display: none;
}
}

.hidden {
Expand Down

0 comments on commit df4c8cc

Please sign in to comment.