@@ -212,7 +212,8 @@ watch(
212212 <th><Text size="12" weight="600" color="tertiary">Proposer</Text></th>
213213 <th><Text size="12" weight="600" color="tertiary">Txs</Text></th>
214214 <th><Text size="12" weight="600" color="tertiary">Blobs</Text></th>
215- <th><Text size="12" weight="600" color="tertiary">Total Fees</Text></th>
215+ <th><Text size="12" weight="600" color="tertiary">Size</Text></th>
216+ <th><Text size="12" weight="600" color="tertiary">Fees</Text></th>
216217 </tr>
217218 </thead>
218219
@@ -294,9 +295,16 @@ watch(
294295 </Text>
295296 </Flex>
296297 </td>
298+ <td>
299+ <Flex align="center">
300+ <Text size="13" weight="600" color="primary">
301+ {{ formatBytes(block.stats.bytes_in_block, 0) }}
302+ </Text>
303+ </Flex>
304+ </td>
297305 <td>
298306 <Flex align="center" gap="4">
299- <AmountInCurrency :amount="{ value: block.stats.fee, decimal: 6 }" :styles="{ amount: { size: '13' } }" />
307+ <AmountInCurrency :amount="{ value: block.stats.fee, decimal: 2 }" :styles="{ amount: { size: '13' } }" />
300308 </Flex>
301309 </td>
302310 </tr>
@@ -495,6 +503,10 @@ watch(
495503 <Text size="12" weight="600" color="tertiary"> Events</Text>
496504 <Text size="12" weight="600" color="secondary"> {{ preview.block.stats.events_count }} </Text>
497505 </Flex>
506+ <Flex align="center" justify="between">
507+ <Text size="12" weight="600" color="tertiary"> Block Size </Text>
508+ <Text size="12" weight="600" color="secondary"> {{ formatBytes(preview.block.stats.bytes_in_block) }} </Text>
509+ </Flex>
498510 <Flex align="center" justify="between">
499511 <Text size="12" weight="600" color="tertiary"> Blobs </Text>
500512 <Text size="12" weight="600" color="secondary"> {{ formatBytes(preview.block.stats.blobs_size) }} </Text>
@@ -566,6 +578,7 @@ watch(
566578.table {
567579 border-radius: 4px 4px 4px 8px;
568580 background: var(--card-background);
581+ max-width: 604px;
569582
570583 & table {
571584 width: 100%;
@@ -657,6 +670,8 @@ watch(
657670 }
658671
659672 .main {
673+ max-height: 690px;
674+ overflow-y: auto;
660675 flex: 1;
661676
662677 border-bottom: 1px solid var(--op-5);
0 commit comments