merge-update

This commit is contained in:
caishi 2022-04-13 14:32:28 +08:00
parent 3e98988f83
commit 2f2344fe55
2 changed files with 3 additions and 4 deletions

View File

@ -123,7 +123,6 @@
align-items: center;
padding:0px 30px;
border-bottom: 1px solid #E0E0E0;
height: 62px;
}
.list-r-Search{
width: 400px;

View File

@ -143,9 +143,9 @@ function Index(props) {
{
topThree && topThree.length > 0 &&
<div className="roundBox">
<Round num={topThree[0][1]} color="#FF7F69" name={topThree[0][0]}/>
<Round num={topThree[1][1]} color="#99dfff" name={topThree[1][0]}/>
<Round num={topThree[2][1]} color="#ff9e48" name={topThree[2][0]}/>
{topThree[0] && <Round num={topThree[0][1]} color="#FF7F69" name={topThree[0][0]}/> }
{topThree[1] && <Round num={topThree[1][1]} color="#99dfff" name={topThree[1][0]}/> }
{topThree[2] && <Round num={topThree[2][1]} color="#ff9e48" name={topThree[2][0]}/> }
</div>
}
{