diff options
Diffstat (limited to 'src/render/Tooltip.tsx')
-rw-r--r-- | src/render/Tooltip.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/Tooltip.tsx b/src/render/Tooltip.tsx index 7c89dd8e..687ebac3 100644 --- a/src/render/Tooltip.tsx +++ b/src/render/Tooltip.tsx @@ -67,7 +67,7 @@ export class Tooltip { </img> : null} {this.text ? - <span className="sponsorSkipObject"> + <span className={`sponsorSkipObject${!props.showLogo ? ` sponsorSkipObjectFirst` : ``}`}> {this.text + (props.link ? ". " : "")} {props.link ? <a style={{textDecoration: "underline"}} |