-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
135 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
const RestorationSitesMapLegend = () => { | ||
return ( | ||
<div className="flex items-center space-x-2"> | ||
<div className="my-0.5 h-4 w-2 rounded-md bg-[#CC61B0] text-sm" /> | ||
<span className="text-sm text-black/60">Restoration sites</span> | ||
</div> | ||
); | ||
}; | ||
const RestorationSitesMapLegend = () => ( | ||
<div className="flex items-center space-x-2"> | ||
<div className="my-0.5 h-4 w-2 rounded-md bg-[#CC61B0] text-sm" /> | ||
<span className="text-sm text-black/60">Restoration sites</span> | ||
</div> | ||
); | ||
|
||
export default RestorationSitesMapLegend; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
const RestorationMapLegend = () => { | ||
return ( | ||
<div className="w-[280px]"> | ||
<div className="flex justify-between text-xs text-black/60"> | ||
<p>0%</p> | ||
<p>100%</p> | ||
</div> | ||
|
||
<div | ||
className="h-3 w-full border" | ||
style={{ | ||
background: | ||
'linear-gradient(90deg, #F9DDDA 0%, #FFADAD 25.52%, #CE78B3 50.52%, #8478CE 78.13%, #224294 100%)', | ||
}} | ||
/> | ||
const RestorationMapLegend = () => ( | ||
<div className="w-[280px]"> | ||
<div className="flex justify-between text-xs text-black/60"> | ||
<p>0%</p> | ||
<p>100%</p> | ||
</div> | ||
); | ||
}; | ||
|
||
<div | ||
className="h-3 w-full border" | ||
style={{ | ||
background: | ||
'linear-gradient(90deg, #F9DDDA 0%, #FFADAD 25.52%, #CE78B3 50.52%, #8478CE 78.13%, #224294 100%)', | ||
}} | ||
/> | ||
</div> | ||
); | ||
|
||
export default RestorationMapLegend; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.