Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

explorer: fix badge width tx fees format optimizing headers #1861

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<th
class="table__header-cell"
>
Fee
Fee (Dusk)
</th>


Expand All @@ -63,7 +63,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<th
class="table__header-cell"
>
Rewards
Rewards (Dusk)
</th>

</tr>
Expand Down Expand Up @@ -129,7 +129,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -192,7 +192,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -255,7 +255,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -318,7 +318,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -381,7 +381,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -444,7 +444,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -507,7 +507,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -570,7 +570,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -633,7 +633,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -696,7 +696,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -896,7 +896,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -1086,7 +1086,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -1276,7 +1276,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -1466,7 +1466,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -1656,7 +1656,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -1846,7 +1846,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -2036,7 +2036,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -2226,7 +2226,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -2416,7 +2416,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down Expand Up @@ -2606,7 +2606,7 @@ exports[`Blocks Card > should disable the \`Show More\` button if there is no mo
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ exports[`Blocks List > renders the Blocks List component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16 DUSK
</span>
</dd>
</dl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<th
class="table__header-cell"
>
Fee
Fee (Dusk)
</th>


Expand All @@ -37,7 +37,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<th
class="table__header-cell"
>
Rewards
Rewards (Dusk)
</th>

</tr>
Expand Down Expand Up @@ -103,7 +103,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -166,7 +166,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -229,7 +229,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -292,7 +292,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -355,7 +355,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -418,7 +418,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -481,7 +481,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -544,7 +544,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -607,7 +607,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down Expand Up @@ -670,7 +670,7 @@ exports[`Blocks Table > should render the \`BlocksTable\` component 1`] = `
<span
class="dusk-badge dusk-badge--variant-alt"
>
16 Dusk
16
</span>
</td>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ exports[`Transaction Details > renders the Transaction Details component 1`] = `
<dd
class="details-list__definition"
>
4877687c2dbf154248d3ddee9ba0d81...431f39056f82a46819da041d4ac0e04
4877687c2dbf154248d3ddee9ba...39056f82a46819da041d4ac0e04
</dd>
<dt
class="details-list__term"
Expand Down Expand Up @@ -102,7 +102,7 @@ exports[`Transaction Details > renders the Transaction Details component 1`] = `
class="details-list__definition"
>
<span
class="dusk-badge dusk-badge--variant-success transaction-details__status"
class="dusk-badge dusk-badge--variant-success transaction-details__status explorer-badge"
>
success
</span>
Expand Down Expand Up @@ -166,7 +166,7 @@ exports[`Transaction Details > renders the Transaction Details component 1`] = `
class="details-list__definition"
>
<span
class="dusk-badge dusk-badge--variant-neutral transaction-details__type"
class="dusk-badge dusk-badge--variant-neutral transaction-details__type explorer-badge"
>
transfer
</span>
Expand Down Expand Up @@ -368,7 +368,7 @@ exports[`Transaction Details > renders the Transaction Details component with th
<dd
class="details-list__definition"
>
4877687c2dbf154248d3ddee9ba0d81...431f39056f82a46819da041d4ac0e04
4877687c2dbf154248d3ddee9ba...39056f82a46819da041d4ac0e04
</dd>
<dt
class="details-list__term"
Expand Down Expand Up @@ -426,7 +426,7 @@ exports[`Transaction Details > renders the Transaction Details component with th
class="details-list__definition"
>
<span
class="dusk-badge dusk-badge--variant-success transaction-details__status"
class="dusk-badge dusk-badge--variant-success transaction-details__status explorer-badge"
>
success
</span>
Expand Down Expand Up @@ -490,7 +490,7 @@ exports[`Transaction Details > renders the Transaction Details component with th
class="details-list__definition"
>
<span
class="dusk-badge dusk-badge--variant-neutral transaction-details__type"
class="dusk-badge dusk-badge--variant-neutral transaction-details__type explorer-badge"
>
transfer
</span>
Expand Down
Loading
Loading