How to adjust introjs-tooltip width using css
How to make a specific introjs tooltip width longer? I’m able to change the text color using css but changing the width is not working. CSS: .customTooltip * { color: #4a4a4a; font-size: 18px; } .customTooltip .introjs-tooltip-title { color: #0a41c9; } //Not working .customTooltip .introjs-tooltip { min-width: 500px; } IntroJs: const intro = introJs(); intro.setOptions({ steps:… Read More How to adjust introjs-tooltip width using css