Skip to content

Commit

Permalink
fix: ensure auspice tooltips are not empty
Browse files Browse the repository at this point in the history
Empty tooltips were caused by the collision in `.tooltip` CSS class. Aspice tooltips use this class, but bootstrap .tooltip class sets opacity to 0. Removing bootstrap class resolves the problem. We don't use bootstrap tooltips anyway.
  • Loading branch information
ivan-aksamentov committed Jul 23, 2020
1 parent 3bd0698 commit c3f0ab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/styles/bootstrap.scss
Expand Up @@ -35,7 +35,7 @@
@import '../../node_modules/bootstrap/scss/toasts';

@import '../../node_modules/bootstrap/scss/modal';
@import '../../node_modules/bootstrap/scss/tooltip';
//@import '../../node_modules/bootstrap/scss/tooltip';
@import '../../node_modules/bootstrap/scss/popover';
@import '../../node_modules/bootstrap/scss/carousel';

Expand Down

0 comments on commit c3f0ab3

Please sign in to comment.