feat(validator-management): move styles to module
This commit is contained in:
parent
a6afdfc835
commit
b625733d7b
|
@ -6,57 +6,27 @@ import DeviceUptime from '../Dashboard/DeviceUptime/DeviceUptime'
|
|||
import ConsensusUptimeCard from '../Dashboard/ConsensusUptime/ConsensusUptimeCard'
|
||||
import ExecutionUptime from '../Dashboard/ExecutionUptime/ExecutionUptime'
|
||||
import BasicInfoCard from '../Dashboard/BasicInfoCards/BasicInfoCard'
|
||||
import styles from './validatorManagement.module.css'
|
||||
import { useWindowSize } from '../../hooks/useWindowSize'
|
||||
|
||||
const ValidatorManagement = () => {
|
||||
const { width } = useWindowSize()
|
||||
|
||||
return (
|
||||
<SidebarsWrapper isNotBottomPadding={true}>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '12px',
|
||||
width: '100%',
|
||||
}}
|
||||
className="transparent-scrollbar"
|
||||
>
|
||||
<div className={`${styles['main-container']} transparent-scrollbar`}>
|
||||
<ManagementHeader />
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'row',
|
||||
gap: '12px',
|
||||
}}
|
||||
>
|
||||
<div className={styles['cards-container']}>
|
||||
<DeviceUptime
|
||||
style={{ flex: 1, minHeight: '100%' }}
|
||||
chartHeight="78%"
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'row',
|
||||
gap: '12px',
|
||||
flex: 1,
|
||||
}}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '12px',
|
||||
flex: 1,
|
||||
}}
|
||||
>
|
||||
<div className={styles['right-cards-container']}>
|
||||
<div className={styles['charts-container']}>
|
||||
<ConsensusUptimeCard />
|
||||
<ExecutionUptime />
|
||||
</div>
|
||||
<div
|
||||
style={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
gap: '12px',
|
||||
}}
|
||||
>
|
||||
<div className={styles['basic-info-cards-container']}>
|
||||
<BasicInfoCard
|
||||
style={{ height: 'calc(50% - 8px)' }}
|
||||
title="Network Validators"
|
||||
|
|
|
@ -1,3 +1,36 @@
|
|||
.main-container {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cards-container {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.right-cards-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 12px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.charts-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.basic-info-cards-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.tabs-container {
|
||||
width: 100%;
|
||||
border: 1px solid #e7eaee;
|
||||
|
|
Loading…
Reference in New Issue