fix(validator-management): remove custom style
This commit is contained in:
parent
d2fb969a4d
commit
c8867d2b24
|
@ -21,20 +21,11 @@ const ValidatorManagement = () => {
|
|||
className={'transparent-scrollbar'}
|
||||
>
|
||||
<ManagementHeader />
|
||||
<div className={styles['container']}>
|
||||
<div className={styles['column big-column']}>
|
||||
<DeviceUptime />
|
||||
</div>
|
||||
<div className={styles['column small-column']}>
|
||||
<ConsensusUptimeCard />
|
||||
<ExecutionUptime />
|
||||
</div>
|
||||
<div className={styles['column small-column']}>
|
||||
<BasicInfoCard title="Network Validators" value="498,156" />
|
||||
|
||||
<BasicInfoCard title="Queue" value="145" />
|
||||
</div>
|
||||
</div>
|
||||
<DeviceUptime style={{ height: 'auto' }} />
|
||||
<ConsensusUptimeCard />
|
||||
<ExecutionUptime />
|
||||
<BasicInfoCard title="Network Validators" value="498,156" />
|
||||
<BasicInfoCard title="Queue" value="145" />
|
||||
<Text size={27} weight={'semibold'}>
|
||||
Validators
|
||||
</Text>
|
||||
|
|
|
@ -46,27 +46,6 @@
|
|||
flex-direction: row;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
align-items: stretch;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.column {
|
||||
flex: 1;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.big-column {
|
||||
flex-basis: 50%;
|
||||
}
|
||||
|
||||
.small-column {
|
||||
flex-basis: 25%;
|
||||
}
|
||||
|
||||
@media (max-width: 790px) {
|
||||
.sync-status-cards-container {
|
||||
min-width: 100%;
|
||||
|
|
Loading…
Reference in New Issue