File tree Expand file tree Collapse file tree 6 files changed +14
-1
lines changed Expand file tree Collapse file tree 6 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ function HeaderCell(props: HeaderCellProps) {
102102 </ div >
103103 { infoTitle && infoDescription && (
104104 < InfoPopup
105+ className = { styles . infoPopupIcon }
105106 title = { infoTitle }
106107 description = { infoDescription }
107108 />
Original file line number Diff line number Diff line change 1010 }
1111
1212 .icon {
13+ flex-shrink : 0 ;
1314 font-size : var (--go-ui-height-icon-multiplier );
1415 }
16+
17+ .info-popup-icon {
18+ flex-shrink : 0 ;
19+ }
1520}
Original file line number Diff line number Diff line change @@ -291,6 +291,7 @@ function FoodInsecurityChart(props: Props) {
291291
292292 return (
293293 < circle
294+ key = { point . key }
294295 className = { styles . averagePoint }
295296 cx = { point . x }
296297 cy = { point . y }
@@ -332,6 +333,7 @@ function FoodInsecurityChart(props: Props) {
332333
333334 return (
334335 < circle
336+ key = { point . x }
335337 className = { styles . averagePoint }
336338 cx = { point . x }
337339 cy = { point . y }
Original file line number Diff line number Diff line change 55 flex-wrap : wrap;
66 gap : var (--go-ui-spacing-md );
77 grid-column : span 2 ;
8+
9+ @media screen and (max-width : 40rem ) {
10+ grid-column : unset;
11+ }
812 }
913
1014 .legend {
Original file line number Diff line number Diff line change 88 "riskScoreVeryLowLabel" : " Very low" ,
99 "riskScoreNotApplicableLabel" : " N/A" ,
1010 "riskTableHazardTypeTitle" : " Hazard Type" ,
11- "riskTableInformTitle" : " INFORM Risk Score" ,
11+ "riskTableInformTitle" : " Risk Score" ,
1212 "riskTableInformDescriptionP1" : " These figures depict INFORM seasonal hazard exposure values for each country for each month on a five-point scale:" ,
1313 "riskTableInformDescriptionP2" : " 1: Very Low | 2: Low | 3: Medium | 4: High | 5: Very High." ,
1414 "riskTableInformDescriptionP3" : " More information on these values can be found {moreInfoLink}" ,
Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ function RiskTable(props: Props) {
176176 ) ,
177177 {
178178 headerInfoTitle : strings . riskTableInformTitle ,
179+ // FIXME: add description for wildfire
179180 headerInfoDescription : (
180181 < div className = { styles . informDescription } >
181182 < div >
You can’t perform that action at this time.
0 commit comments