Skip to content

Commit

Permalink
feat: TAR-96 tooltip styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Chattox committed Mar 22, 2024
1 parent 9725b09 commit 47316af
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/extension/src/AIPromptDialog/AIPromptDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ function SeoKeywords(props: any) {
<Tooltip
title={infoTooltipString}
arrow
classes={{ arrow: props.classes.arrow, tooltip: props.classes.arrow }}
classes={{
arrow: props.classes.arrow,
tooltip: props.classes.tooltip,
}}
>
<SvgIcon viewBox="0 0 15 15" className={props.classes.infoIcon}>
<InfoIcon />
Expand All @@ -167,7 +170,10 @@ function SeoKeywords(props: any) {
<Tooltip
title={props.keywords.join(", ")}
arrow
classes={{ arrow: props.classes.arrow, tooltip: props.classes.arrow }}
classes={{
arrow: props.classes.arrow,
tooltip: props.classes.tooltip,
}}
>
<Chip
icon={
Expand Down

0 comments on commit 47316af

Please sign in to comment.