forked from Gitlink/forgeplus-react
merge-update
This commit is contained in:
parent
3e98988f83
commit
2f2344fe55
|
@ -123,7 +123,6 @@
|
|||
align-items: center;
|
||||
padding:0px 30px;
|
||||
border-bottom: 1px solid #E0E0E0;
|
||||
height: 62px;
|
||||
}
|
||||
.list-r-Search{
|
||||
width: 400px;
|
||||
|
|
|
@ -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>
|
||||
}
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue