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