Skip to content

Commit 74d3813

Browse files
committed
Update wording in info box on pg 1 of the calculator and added tooltip icon
1 parent 54714d9 commit 74d3813

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

client/src/components/ProjectWizard/WizardPages/DiscoverTooltips.jsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from "react";
22
import { createUseStyles, useTheme } from "react-jss";
3+
import { MdInfo } from "react-icons/md";
34

45
const useStyles = createUseStyles(theme => ({
56
container: {
@@ -15,17 +16,18 @@ const useStyles = createUseStyles(theme => ({
1516
flexShrink: "1",
1617
fontFamily: "Calibri",
1718
fontWeight: 700
18-
}
19+
},
20+
infoIcon: {
21+
color: theme.colorLADOT
22+
},
1923
}));
2024
const DiscoverTooltips = () => {
2125
const theme = useTheme();
2226
const classes = useStyles(theme);
2327
return (
2428
<div className={classes.container}>
2529
<p className={classes.title}>
26-
Try hovering over a term you want more information on. If the words
27-
become underlined and bold, you can click for a description. Hovering
28-
over a green question mark will also provide more information.
30+
If you want to know more about a term, hover over it and click the icon<MdInfo className={classes.infoIcon} /> for more information.
2931
</p>
3032
</div>
3133
);

0 commit comments

Comments
 (0)