fix: spaces in right sidebar
This commit is contained in:
parent
de83da5a6c
commit
b09bae74f0
|
@ -34,7 +34,7 @@ const AlertsList = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<YStack space={'$2'}>
|
<YStack space={'$2'}>
|
||||||
<XStack justifyContent="space-between">
|
<XStack justifyContent="space-between" style={{ marginBottom: '3px' }}>
|
||||||
<Text size={15} weight={'semibold'}>
|
<Text size={15} weight={'semibold'}>
|
||||||
Alerts
|
Alerts
|
||||||
</Text>
|
</Text>
|
||||||
|
|
|
@ -30,7 +30,7 @@ const LogsList = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<YStack space={'$2'}>
|
<YStack space={'$2'}>
|
||||||
<XStack justifyContent="space-between">
|
<XStack justifyContent="space-between" style={{ marginBottom: '3px' }}>
|
||||||
<Text size={15} weight={'semibold'}>
|
<Text size={15} weight={'semibold'}>
|
||||||
Logs
|
Logs
|
||||||
</Text>
|
</Text>
|
||||||
|
|
|
@ -8,7 +8,7 @@ const ValidatorsCount = () => {
|
||||||
const countOfValidators = useSelector((state: RootState) => state.rightSidebar.countOfValidators)
|
const countOfValidators = useSelector((state: RootState) => state.rightSidebar.countOfValidators)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<XStack justifyContent={'space-between'} width={'85%'}>
|
<XStack justifyContent={'space-between'} width={'82%'}>
|
||||||
<Text size={15} weight={'semibold'}>
|
<Text size={15} weight={'semibold'}>
|
||||||
Validators
|
Validators
|
||||||
</Text>
|
</Text>
|
||||||
|
|
Loading…
Reference in New Issue