Merge pull request #1018 from FlorianZahn/fontSizeFixTooltip

Makes rectangleTooltip fontSize bigger
This commit is contained in:
Ajay Ramachandran
2021-11-02 00:08:26 -04:00
committed by GitHub
2 changed files with 8 additions and 3 deletions

View File

@@ -292,11 +292,13 @@ class SponsorTimeEditComponent extends React.Component<SponsorTimeEditProps, Spo
referenceNode: element.parentElement,
prependElement: element,
timeout: 15,
bottomOffset: 75 + "px",
bottomOffset: 0 + "px",
leftOffset: -318 + "px",
backgroundColor: "rgba(28, 28, 28, 1.0)",
htmlId: "sponsorTimesContainer" + this.idSuffix,
buttonFunction: () => {Config.config.scrollToEditTimeUpdate = true}
buttonFunction: () => { Config.config.scrollToEditTimeUpdate = true },
fontSize: "14px",
maxHeight: "200px"
});
}
}