File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -11,25 +11,27 @@ import { Flex, VStack } from "@/components/ui/flex"
11
11
import { getLocaleForNumberFormat } from "@/lib/utils/translations"
12
12
13
13
const Cell = ( { children } : ChildOnlyProp ) => (
14
- < VStack className = "space-y- 2 border-t border-t-border-preBorder px-8 py-4 first:border-l-0 first:border- t-0 md:border-l md:border- t-0 md:border-l-border-preBorder " >
14
+ < VStack className = "gap- 2 border-t border-t-border-preBorder px-8 py-4 first:border-t-0 md:border-t-0" >
15
15
{ children }
16
16
</ VStack >
17
17
)
18
18
19
19
const Value = ( { children } : ChildOnlyProp ) => (
20
- < code className = "inline-block bg-none p-0 pe-1 font-monospace text-4xl font-bold text-primary" >
20
+ < code className = "inline-block bg-none p-0 pe-1 font-monospace text-3xl font-bold text-primary" >
21
21
{ children }
22
22
</ code >
23
23
)
24
24
25
25
const Label = ( { children } : ChildOnlyProp ) => (
26
- < Flex className = "items-center text-sm uppercase" > { children } </ Flex >
26
+ < Flex className = "items-center justify-center gap-2 text-sm uppercase" >
27
+ { children }
28
+ </ Flex >
27
29
)
28
30
29
31
// BeaconchainTooltip component
30
32
const BeaconchainTooltip = ( { children } : ChildOnlyProp ) => (
31
33
< Tooltip content = { children } >
32
- < MdInfoOutline className = "active:primary focus:primary ml-2 h-4 w-4 align-middle hover:text-primary" />
34
+ < MdInfoOutline className = "active:primary focus:primary h-4 w-4 align-middle hover:text-primary" />
33
35
</ Tooltip >
34
36
)
35
37
You can’t perform that action at this time.
0 commit comments