File tree Expand file tree Collapse file tree
client/src/components/ProjectWizard/WizardPages Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import React from "react" ;
22import { createUseStyles , useTheme } from "react-jss" ;
3+ import { MdInfo } from "react-icons/md" ;
34
45const 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} ) ) ;
2024const 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 ) ;
You can’t perform that action at this time.
0 commit comments