increase bar graph width

- change card info texts
	- add fixed faction digits to 2
	- add map marker css
This commit is contained in:
Pritimay Sarkar
2023-08-01 11:54:48 +05:30
parent 3ab6510bfd
commit 75f65e81b4
6 changed files with 38 additions and 33 deletions

View File

@@ -10,7 +10,7 @@ function Locations({ show }) {
return (
<div className='locations-card'>
<div className='locations-card-title'>Locations<span className='locations-info-icon' onClick={() => { setShowCardInfo(!showCardInfo) }}><FaInfoCircle /></span>
{showCardInfo && <div className='locations-info-card'>Test colcations</div>}
{showCardInfo && <div className='locations-info-card'>Test locations are shown in map. For example, Nagpur has conducted tests</div>}
</div>
<WorldMap show={show} />
</div>